HomeSort by relevance Sort by last modified time
    Searched full:dstmap1 (Results 1 - 5 of 5) sorted by null

  /external/opencv3/modules/imgproc/misc/java/test/
ImgprocTest.java 387 Mat dstmap1 = new Mat(1, 4, CvType.CV_16SC2); local
390 Imgproc.convertMaps(map1, map2, dstmap1, dstmap2, CvType.CV_16SC2);
394 assertMatEqual(truthMap1, dstmap1);
402 Mat dstmap1 = new Mat(1, 3, CvType.CV_16SC2); local
405 Imgproc.convertMaps(map1, map2, dstmap1, dstmap2, CvType.CV_16SC2, false);
410 assertMatEqual(truthMap1, dstmap1);
    [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)
818 Mat& dstmap1 = *((Mat*)dstmap1_nativeObj); local
820 cv::convertMaps( map1, map2, dstmap1, dstmap2, (int)dstmap1type, (bool)nninterpolation );
842 Mat& dstmap1 = *((Mat*)dstmap1_nativeObj); local
844 cv::convertMaps( map1, map2, dstmap1, dstmap2, (int)dstmap1type );
    [all...]
  /external/opencv3/modules/imgproc/src/
imgwarp.cpp     [all...]
  /external/opencv3/modules/imgproc/include/opencv2/
imgproc.hpp     [all...]

Completed in 201 milliseconds