Home
last modified time | relevance | path

Searched refs:warpAffine (Results 1 – 25 of 35) sorted by relevance

12

/external/opencv3/doc/py_tutorials/py_imgproc/py_geometric_transformations/
Dpy_geometric_transformations.markdown14 OpenCV provides two transformation functions, **cv2.warpAffine** and **cv2.warpPerspective**, with
15 which you can have all kinds of transformations. **cv2.warpAffine** takes a 2x3 transformation
46 You can take make it into a Numpy array of type np.float32 and pass it into **cv2.warpAffine()**
56 dst = cv2.warpAffine(img,M,(cols,rows))
64 Third argument of the **cv2.warpAffine()** function is the size of the output image, which should
94 dst = cv2.warpAffine(img,M,(cols,rows))
105 which is to be passed to **cv2.warpAffine**.
117 dst = cv2.warpAffine(img,M,(cols,rows))
/external/opencv3/modules/video/perf/
Dperf_ecc.cpp34 warpAffine(img, templateImage, warpGround,
42 warpAffine(img, templateImage, warpGround,
48 warpAffine(img, templateImage, warpGround,
/external/opencv3/samples/cpp/tutorial_code/ImgTrans/
DGeometric_Transforms_Demo.cpp52 warpAffine( src, warp_dst, warp_mat, warp_dst.size() ); in main()
65 warpAffine( warp_dst, warp_rotate_dst, rot_mat, warp_dst.size() ); in main()
/external/opencv3/samples/cpp/
Dimage_alignment.cpp241 warpAffine(target_image, template_image, warpGround, in main()
249 warpAffine(target_image, template_image, warpGround, in main()
258 warpAffine(target_image, template_image, warpGround, in main()
336 warpAffine (target_image, warped_image, warp_matrix, warped_image.size(), in main()
/external/opencv3/modules/video/test/
Dtest_ecc.cpp140 warpAffine(testImg, warpedImage, translationGround, in testTranslation()
215 warpAffine(testImg, warpedImage, euclideanGround, in testEuclidean()
290 warpAffine(testImg, warpedImage, affineGround, in testAffine()
440 warpAffine(testImg, warpedImage, translationGround, in testMask()
Dtest_estimaterigid.cpp152 warpAffine(img, rotated, aff, img.size()); in testImage()
/external/opencv3/modules/cudawarping/test/
Dtest_warp_affine.cpp99 cv::warpAffine(src, dst_gold, M, size, flags, borderMode); in CUDA_TEST_P()
217 cv::cuda::warpAffine(loadMat(src, useRoi), dst, M, size, flags, borderType, val); in CUDA_TEST_P()
266 cv::cuda::warpAffine(loadMat(src), dst, M, src.size(), flags); in CUDA_TEST_P()
/external/opencv3/samples/python2/
Dasift.py53 … img = cv2.warpAffine(img, A, (w, h), flags=cv2.INTER_LINEAR, borderMode=cv2.BORDER_REPLICATE)
61 mask = cv2.warpAffine(mask, A, (w, h), flags=cv2.INTER_NEAREST)
Ddigits_video.py77 … bin_norm = cv2.warpAffine(bin_roi, A, (SZ, SZ), flags=cv2.WARP_INVERSE_MAP | cv2.INTER_LINEAR)
Ddeconvolution.py55 kern = cv2.warpAffine(kern, A, (sz, sz), flags=cv2.INTER_CUBIC)
Ddigits.py65 img = cv2.warpAffine(img, M, (SZ, SZ), flags=cv2.WARP_INVERSE_MAP | cv2.INTER_LINEAR)
/external/opencv3/doc/tutorials/imgproc/imgtrans/warp_affine/
Dwarp_affine.markdown9 - Use the OpenCV function @ref cv::warpAffine to implement simple remapping routines.
86 between three points. We use the function @ref cv::warpAffine for that purpose.
140 warpAffine( src, warp_dst, warp_mat, warp_dst.size() );
171 warpAffine( warp_dst, warp_rotate_dst, rot_mat, warp_dst.size() );
/external/opencv3/modules/video/src/
Decc.cpp468 warpAffine(imageFloat, imageWarped, map, imageWarped.size(), imageFlags); in findTransformECC()
469 warpAffine(gradientX, gradientXWarped, map, gradientXWarped.size(), imageFlags); in findTransformECC()
470 warpAffine(gradientY, gradientYWarped, map, gradientYWarped.size(), imageFlags); in findTransformECC()
471 warpAffine(preMask, imageMask, map, imageMask.size(), maskFlags); in findTransformECC()
/external/opencv3/modules/cudawarping/include/opencv2/
Dcudawarping.hpp126 CV_EXPORTS void warpAffine(InputArray src, OutputArray dst, InputArray M, Size dsize, int flags = I…
/external/opencv3/doc/py_tutorials/py_ml/py_svm/py_svm_opencv/
Dpy_svm_opencv.markdown27 img = cv2.warpAffine(img,M,(SZ, SZ),flags=affine_flags)
79 img = cv2.warpAffine(img,M,(SZ, SZ),flags=affine_flags)
/external/opencv3/modules/imgproc/test/ocl/
Dtest_warp.cpp130 OCL_OFF(cv::warpAffine(src_roi, dst_roi, M, dsize, interpolation)); in OCL_TEST_P()
131 OCL_ON(cv::warpAffine(usrc_roi, udst_roi, M, dsize, interpolation)); in OCL_TEST_P()
/external/opencv3/modules/videostab/src/
Dstabilizer.cpp207 warpAffine( in stabilizeFrame()
218 warpAffine( in stabilizeFrame()
Dinpainting.cpp378 warpAffine( in inpaint()
391 warpAffine( in inpaint()
/external/opencv3/modules/cudawarping/perf/
Dperf_warping.cpp266 TEST_CYCLE() cv::cuda::warpAffine(d_src, dst, M, size, interpolation, borderMode); in PERF_TEST_P()
274 TEST_CYCLE() cv::warpAffine(src, dst, M, size, interpolation, borderMode); in PERF_TEST_P()
/external/opencv3/modules/imgproc/src/opencl/
Dwarp_affine.cl90 __kernel void warpAffine(__global const uchar * srcptr, int src_step, int src_offset, int src_rows,…
134 __kernel void warpAffine(__global const uchar * srcptr, int src_step, int src_offset, int src_rows,…
267 __kernel void warpAffine(__global const uchar * srcptr, int src_step, int src_offset, int src_rows,…
/external/opencv3/modules/imgproc/test/
Dtest_imgwarp_strict.cpp997 void warpAffine(const Mat&, Mat&);
1036 cv::warpAffine(src, dst, M, dst.size(), interpolation, borderType, borderValue); in run_func()
1048 warpAffine(src, reference_dst); in run_reference_func()
1051 void CV_WarpAffine_Test::warpAffine(const Mat& _src, Mat& _dst) in warpAffine() function in CV_WarpAffine_Test
/external/opencv3/modules/imgproc/perf/opencl/
Dperf_imgwarp.cpp82 OCL_TEST_CYCLE() cv::warpAffine(src, dst, M, srcSize, interpolation); in OCL_PERF_TEST_P()
/external/opencv3/modules/cudawarping/src/
Dwarp.cpp50 void cv::cuda::warpAffine(InputArray, OutputArray, InputArray, Size, int, int, Scalar, Stream&) { t… in warpAffine() function in cv::cuda
183 void cv::cuda::warpAffine(InputArray _src, OutputArray _dst, InputArray _M, Size dsize, int flags, … in warpAffine() function in cv::cuda
/external/opencv3/modules/cudev/test/
Dtest_warp.cu233 cv::warpAffine(src, dst_gold, M, size, INTER_NEAREST | WARP_INVERSE_MAP); in TEST()
/external/opencv3/modules/shape/src/
Daff_trans.cpp105warpAffine(transformingImage, output, affineMat, transformingImage.getMat().size(), flags, borderM… in warpImage()

12