HomeSort by relevance Sort by last modified time
    Searched refs:CV_16SC2 (Results 1 - 25 of 34) sorted by null

1 2

  /external/opencv3/modules/imgproc/perf/
perf_remap.cpp 18 Values( CV_16SC2, CV_32FC1, CV_32FC2 ),
34 else if (inter_type != INTER_NEAREST && map1_type == CV_16SC2)
55 case CV_16SC2:
  /external/opencv3/modules/core/misc/java/src/java/
core+CvType.java 19 CV_16SC1 = CV_16SC(1), CV_16SC2 = CV_16SC(2), CV_16SC3 = CV_16SC(3), CV_16SC4 = CV_16SC(4),
  /external/opencv3/modules/cudaimgproc/src/
mean_shift.cpp 110 _dstsp.create(src.size(), CV_16SC2);
canny.cpp 214 ensureSizeIsEnough(1, image_size.area(), CV_16SC2, st1_);
215 ensureSizeIsEnough(1, image_size.area(), CV_16SC2, st2_);
  /external/opencv3/modules/imgproc/test/
test_imgwarp_strict.cpp 674 static const int mapx_types[] = { CV_16SC2, CV_32FC1, CV_32FC2 };
683 case CV_16SC2:
766 if (mapx.type() != CV_16SC2)
767 convertMaps(mapx.clone(), mapy.clone(), mapx, mapy, CV_16SC2, interpolation == INTER_NEAREST);
775 mapy.type() == CV_16SC1) && mapx.type() == CV_16SC2);
830 CV_Assert(mapx.type() == CV_16SC2 && mapy.empty());
876 CV_Assert(mapx.type() == CV_16SC2 && mapy.type() == CV_16UC1);
    [all...]
  /external/opencv3/modules/cudafeatures2d/src/
fast.cpp 107 GpuMat d_keypoints = pool.getBuffer(ROWS_COUNT, max_npoints_, CV_16SC2);
125 GpuMat kpLoc = pool.getBuffer(1, max_npoints_, CV_16SC2);
  /external/opencv3/modules/imgproc/test/ocl/
test_warp.cpp 370 std::pair<MatType, MatType>((MatType)CV_16SC2, (MatType)CV_16UC1),
384 std::pair<MatType, MatType>((MatType)CV_16SC2, (MatType)CV_16UC1),
385 std::pair<MatType, MatType>((MatType)CV_16SC2, noType)),
test_imgproc.cpp 474 CV_16SC1, CV_16SC2, CV_16SC3, CV_16SC4,
  /external/opencv3/samples/cpp/
stereo_match.cpp 221 initUndistortRectifyMap(M1, D1, R1, P1, img_size, CV_16SC2, map11, map12);
222 initUndistortRectifyMap(M2, D2, R2, P2, img_size, CV_16SC2, map21, map22);
stereo_calib.cpp 279 initUndistortRectifyMap(cameraMatrix[0], distCoeffs[0], R1, P1, imageSize, CV_16SC2, rmap[0][0], rmap[0][1]);
280 initUndistortRectifyMap(cameraMatrix[1], distCoeffs[1], R2, P2, imageSize, CV_16SC2, rmap[1][0], rmap[1][1]);
3calibration.cpp 344 initUndistortRectifyMap(cameraMatrix[k], distCoeffs[k], R[k], P[k], imageSize, CV_16SC2, map1[k], map2[k]);
calibration.cpp 561 imageSize, CV_16SC2, map1, map2);
  /external/opencv3/modules/imgproc/src/
undistort.cpp 70 m1type = CV_16SC2;
71 CV_Assert( m1type == CV_16SC2 || m1type == CV_32FC1 || m1type == CV_32FC2 );
76 _map2.create( size, m1type == CV_16SC2 ? CV_16UC1 : CV_32FC1 );
147 if( m1type == CV_16SC2 )
182 Mat map1(stripe_size0, src.cols, CV_16SC2), map2(stripe_size0, src.cols, CV_16UC1);
imgwarp.cpp     [all...]
  /external/opencv3/modules/core/include/opencv2/core/
cvdef.h 135 #define CV_16SC2 CV_MAKETYPE(CV_16S,2)
  /external/opencv3/modules/cudalegacy/src/
bm.cpp 183 ensureSizeIsEnough(1, ssCount, CV_16SC2, buf);
  /external/opencv3/modules/core/perf/
perf_arithm.cpp 10 #define TYPICAL_MAT_TYPES_CORE_ARITHM CV_8UC1, CV_8SC1, CV_16SC1, CV_16SC2, CV_16SC3, CV_16SC4, CV_8UC4, CV_32SC1, CV_32FC1
  /external/opencv3/modules/cudaarithm/perf/
perf_core.cpp 139 Values(CV_8UC1, CV_8UC4, CV_16UC2, CV_16SC2, CV_32SC1, CV_32SC2, CV_64FC1)))
  /external/opencv3/modules/imgproc/misc/java/test/
ImgprocTest.java 387 Mat dstmap1 = new Mat(1, 4, CvType.CV_16SC2);
390 Imgproc.convertMaps(map1, map2, dstmap1, dstmap2, CvType.CV_16SC2);
392 Mat truthMap1 = new Mat(1, 4, CvType.CV_16SC2);
402 Mat dstmap1 = new Mat(1, 3, CvType.CV_16SC2);
405 Imgproc.convertMaps(map1, map2, dstmap1, dstmap2, CvType.CV_16SC2, false);
408 Mat truthMap1 = new Mat(1, 3, CvType.CV_16SC2);
    [all...]
  /external/opencv3/modules/cudaarithm/test/
test_core.cpp 236 MatType(CV_16SC2),
  /external/opencv3/samples/cpp/tutorial_code/calib3d/camera_calibration/
camera_calibration.cpp 386 imageSize, CV_16SC2, map1, map2);
  /external/opencv3/modules/calib3d/test/
test_undistort.cpp 676 mat_type = (cvtest::randInt(rng) % 2) == 0 ? CV_32FC1 : CV_16SC2;
686 int typex = (cvtest::randInt(rng) % 2) == 0 ? CV_32FC1 : CV_16SC2;
    [all...]
  /external/opencv3/modules/calib3d/src/
fisheye.cpp 404 CV_Assert( m1type == CV_16SC2 || m1type == CV_32F || m1type <=0 );
405 map1.create( size, m1type <= 0 ? CV_16SC2 : m1type );
406 map2.create( size, map1.type() == CV_16SC2 ? CV_16UC1 : CV_32F );
473 if( m1type == CV_16SC2 )
503 fisheye::initUndistortRectifyMap(K, D, cv::Matx33d::eye(), Knew, size, CV_16SC2, map1, map2 );
    [all...]
  /external/opencv/cxcore/include/
cxmisc.h     [all...]
  /external/opencv3/modules/core/src/
directx.cpp 108 case DXGI_FORMAT_R16G16_SINT: return CV_16SC2;
    [all...]

Completed in 750 milliseconds

1 2