HomeSort by relevance Sort by last modified time
    Searched full:warpperspective (Results 1 - 25 of 33) sorted by null

1 2

  /external/opencv3/modules/imgproc/test/ocl/
test_warp.cpp 68 // warpAffine & warpPerspective
137 //// warpPerspective
139 typedef WarpTestBase WarpPerspective;
141 OCL_TEST_P(WarpPerspective, Mat)
157 OCL_OFF(cv::warpPerspective(src_roi, dst_roi, M, dsize, interpolation));
158 OCL_ON(cv::warpPerspective(usrc_roi, udst_roi, M, dsize, interpolation));
344 OCL_INSTANTIATE_TEST_CASE_P(ImgprocWarp, WarpPerspective, Combine(
  /external/opencv3/modules/cudawarping/test/
test_warp_perspective.cpp 100 cv::warpPerspective(src, dst_gold, M, size, flags, borderMode);
186 PARAM_TEST_CASE(WarpPerspective, cv::cuda::DeviceInfo, cv::Size, MatType, Inverse, Interpolation, BorderType, UseRoi)
210 CUDA_TEST_P(WarpPerspective, Accuracy)
220 cv::cuda::warpPerspective(loadMat(src, useRoi), dst, M, size, flags, borderType, val);
228 INSTANTIATE_TEST_CASE_P(CUDA_Warping, WarpPerspective, testing::Combine(
269 cv::cuda::warpPerspective(loadMat(src), dst, M, src.size(), flags);
  /external/opencv3/doc/py_tutorials/py_imgproc/py_geometric_transformations/
py_geometric_transformations.markdown 14 OpenCV provides two transformation functions, **cv2.warpAffine** and **cv2.warpPerspective**, with
16 matrix while **cv2.warpPerspective** takes a 3x3 transformation matrix as input.
133 **cv2.getPerspectiveTransform**. Then apply **cv2.warpPerspective** with this 3x3 transformation
146 dst = cv2.warpPerspective(img,M,(300,300))
  /external/opencv3/modules/video/perf/
perf_ecc.cpp 55 warpPerspective(img, templateImage, warpGround,
  /external/opencv3/modules/imgproc/perf/
perf_warp.cpp 53 PERF_TEST_P( TestWarpPerspective, WarpPerspective,
82 TEST_CYCLE() warpPerspective( src, dst, warpMat, sz, interType, borderMode, borderColor );
127 warpPerspective( src, dst, warpMat, size, interType, borderMode, borderColor );
  /external/opencv3/modules/cudev/test/
test_warp.cu 200 // warpAffine & warpPerspective
238 TEST(WarpPerspective, Rotation)
253 cv::warpPerspective(src, dst_gold, M, size, INTER_NEAREST | WARP_INVERSE_MAP);
  /external/opencv3/modules/imgproc/perf/opencl/
perf_imgwarp.cpp 87 ///////////// WarpPerspective ////////////////////////
92 OCL_PERF_TEST_P(WarpPerspectiveFixture, WarpPerspective,
114 OCL_TEST_CYCLE() cv::warpPerspective(src, dst, M, srcSize, interpolation);
  /external/opencv3/modules/cudawarping/perf/
perf_warping.cpp 281 // WarpPerspective
283 PERF_TEST_P(Sz_Depth_Cn_Inter_Border, WarpPerspective,
314 TEST_CYCLE() cv::cuda::warpPerspective(d_src, dst, M, size, interpolation, borderMode);
322 TEST_CYCLE() cv::warpPerspective(src, dst, M, size, interpolation, borderMode);
  /external/opencv3/modules/cudawarping/include/opencv2/
cudawarping.hpp 156 @sa warpPerspective
158 CV_EXPORTS void warpPerspective(InputArray src, OutputArray dst, InputArray M, Size dsize, int flags = INTER_LINEAR,
170 @sa cuda::warpPerspective , cuda::remap
  /external/opencv3/modules/imgproc/src/opencl/
warp_perspective.cl 89 __kernel void warpPerspective(__global const uchar * srcptr, int src_step, int src_offset, int src_rows, int src_cols,
119 __kernel void warpPerspective(__global const uchar * srcptr, int src_step, int src_offset, int src_rows, int src_cols,
181 __kernel void warpPerspective(__global const uchar * srcptr, int src_step, int src_offset, int src_rows, int src_cols,
  /external/opencv3/samples/python2/
lk_homography.py 70 overlay = cv2.warpPerspective(self.frame0, H, (w, h))
  /external/opencv3/modules/videostab/src/
stabilizer.cpp 211 warpPerspective(
222 warpPerspective(
inpainting.cpp 382 warpPerspective(
395 warpPerspective(mask1_, transformedMask1_, motion1to0, mask1_.size(), INTER_NEAREST);
  /external/opencv3/modules/cudev/include/opencv2/cudev/expr/
warping.hpp 97 // warpPerspective
  /external/opencv3/modules/video/src/
ecc.cpp 475 warpPerspective(imageFloat, imageWarped, map, imageWarped.size(), imageFlags);
476 warpPerspective(gradientX, gradientXWarped, map, gradientXWarped.size(), imageFlags);
477 warpPerspective(gradientY, gradientYWarped, map, gradientYWarped.size(), imageFlags);
478 warpPerspective(preMask, imageMask, map, imageMask.size(), maskFlags);
  /external/opencv3/samples/cpp/
image_alignment.cpp 266 warpPerspective(target_image, template_image, warpGround,
339 warpPerspective (target_image, warped_image, warp_matrix, warped_image.size(),
  /external/opencv3/modules/imgproc/test/
test_imgwarp_strict.cpp     [all...]
  /external/opencv3/modules/cudawarping/src/
warp.cpp 53 void cv::cuda::warpPerspective(InputArray, OutputArray, InputArray, Size, int, int, Scalar, Stream&) { throw_no_cuda(); }
322 void cv::cuda::warpPerspective(InputArray _src, OutputArray _dst, InputArray _M, Size dsize, int flags, int borderMode, Scalar borderValue, Stream& stream)
  /external/opencv3/modules/features2d/test/
test_rotation_and_scale_invariance.cpp 82 warpPerspective(srcImage, dstImage, H, sz);
83 warpPerspective(srcMask, dstMask, H, sz);
  /external/opencv3/modules/video/test/
test_ecc.cpp 365 warpPerspective(testImg, warpedImage, homoGround,
  /external/opencv3/modules/java/src/
imgproc+Imgproc.java     [all...]
  /external/opencv3/modules/video/include/opencv2/video/
tracking.hpp 304 one, i.e. use the flag WARP_INVERSE_MAP with warpAffine or warpPerspective. See also the OpenCV
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/image_processing/
screen_finder.py 214 screen = cv2.warpPerspective(
    [all...]
  /external/opencv3/modules/imgproc/include/opencv2/imgproc/
imgproc_c.h 235 @see cv::warpPerspective
    [all...]

Completed in 1226 milliseconds

1 2