/external/opencv3/modules/imgproc/misc/java/test/ |
ImgprocTest.java | 388 Mat dstmap2 = new Mat(1, 4, CvType.CV_16UC1); local 390 Imgproc.convertMaps(map1, map2, dstmap1, dstmap2, CvType.CV_16SC2); 396 assertMatEqual(truthMap2, dstmap2); 403 Mat dstmap2 = new Mat(1, 3, CvType.CV_16UC1); local 405 Imgproc.convertMaps(map1, map2, dstmap1, dstmap2, CvType.CV_16SC2, false); 412 assertMatEqual(truthMap2, dstmap2); [all...] |
/external/opencv3/modules/imgproc/src/ |
imgwarp.cpp | [all...] |
/external/opencv3/modules/java/src/ |
imgproc+Imgproc.java | 448 // C++: void convertMaps(Mat map1, Mat map2, Mat& dstmap1, Mat& dstmap2, int dstmap1type, bool nninterpolation = false) 451 //javadoc: convertMaps(map1, map2, dstmap1, dstmap2, dstmap1type, nninterpolation) 452 public static void convertMaps(Mat map1, Mat map2, Mat dstmap1, Mat dstmap2, int dstmap1type, boolean nninterpolation) 455 convertMaps_0(map1.nativeObj, map2.nativeObj, dstmap1.nativeObj, dstmap2.nativeObj, dstmap1type, nninterpolation); 460 //javadoc: convertMaps(map1, map2, dstmap1, dstmap2, dstmap1type) 461 public static void convertMaps(Mat map1, Mat map2, Mat dstmap1, Mat dstmap2, int dstmap1type) 464 convertMaps_1(map1.nativeObj, map2.nativeObj, dstmap1.nativeObj, dstmap2.nativeObj, dstmap1type); [all...] |
imgproc.cpp | 805 // void convertMaps(Mat map1, Mat map2, Mat& dstmap1, Mat& dstmap2, int dstmap1type, bool nninterpolation = false) 819 Mat& dstmap2 = *((Mat*)dstmap2_nativeObj); local 820 cv::convertMaps( map1, map2, dstmap1, dstmap2, (int)dstmap1type, (bool)nninterpolation ); 843 Mat& dstmap2 = *((Mat*)dstmap2_nativeObj); local 844 cv::convertMaps( map1, map2, dstmap1, dstmap2, (int)dstmap1type ); [all...] |
/external/opencv3/modules/imgproc/include/opencv2/ |
imgproc.hpp | [all...] |