CV_32SC2 1403 modules/core/include/opencv2/core/types_c.h #define CV_SEQ_ELTYPE_POINT CV_32SC2 /**< (x,y) */ CV_32SC2 1477 modules/core/include/opencv2/core/types_c.h ((CV_SEQ_ELTYPE(seq) == CV_32SC2 || CV_SEQ_ELTYPE(seq) == CV_32FC2)) CV_32SC2 20 modules/core/misc/java/src/java/core+CvType.java CV_32SC1 = CV_32SC(1), CV_32SC2 = CV_32SC(2), CV_32SC3 = CV_32SC(3), CV_32SC4 = CV_32SC(4), CV_32SC2 406 modules/core/misc/java/test/MatTest.java Mat m = getTestMat(5, CvType.CV_32SC2); CV_32SC2 3771 modules/core/src/stat.cpp _idx.create(n, 1, CV_32SC2); CV_32SC2 139 modules/cudaarithm/perf/perf_core.cpp Values(CV_8UC1, CV_8UC4, CV_16UC2, CV_16SC2, CV_32SC1, CV_32SC2, CV_64FC1))) CV_32SC2 238 modules/cudaarithm/test/test_core.cpp MatType(CV_32SC2), CV_32SC2 632 modules/cudafeatures2d/src/brute_force_matcher.cpp _matches.create(2, nQuery, CV_32SC2); CV_32SC2 635 modules/cudafeatures2d/src/brute_force_matcher.cpp trainIdx = GpuMat(1, nQuery, CV_32SC2, matches.ptr(0)); CV_32SC2 714 modules/cudafeatures2d/src/brute_force_matcher.cpp _matches.create(3, nQuery, CV_32SC2); CV_32SC2 717 modules/cudafeatures2d/src/brute_force_matcher.cpp GpuMat trainIdx(1, nQuery, CV_32SC2, matches.ptr(0)); CV_32SC2 718 modules/cudafeatures2d/src/brute_force_matcher.cpp GpuMat imgIdx(1, nQuery, CV_32SC2, matches.ptr(1)); CV_32SC2 746 modules/cudafeatures2d/src/brute_force_matcher.cpp CV_Assert( ((gpu_matches.type() == CV_32SC2) && (gpu_matches.rows == 2 || gpu_matches.rows == 3)) || CV_32SC2 755 modules/cudafeatures2d/src/brute_force_matcher.cpp if (gpu_matches.type() == CV_32SC2) CV_32SC2 361 modules/cudalegacy/src/fgd.cpp _contours.create((int)c->total, 1, CV_32SC2, (int)i, true); CV_32SC2 687 modules/cudalegacy/src/fgd.cpp dst.create((int) c.size(), 1, CV_32SC2, (int) i, true); CV_32SC2 170 modules/features2d/src/matchers.cpp ensureSizeIsEnough(1, query_rows, CV_32SC2, trainIdx); CV_32SC2 222 modules/features2d/src/matchers.cpp if(trainIdx.type() != CV_32SC2 && trainIdx.type() != CV_32SC1) return false; CV_32SC2 227 modules/features2d/src/matchers.cpp const int nQuery = trainIdx.type() == CV_32SC2 ? trainIdx.cols : trainIdx.rows; CV_32SC2 228 modules/features2d/src/matchers.cpp const int k = trainIdx.type() == CV_32SC2 ? 2 : trainIdx.cols; CV_32SC2 777 modules/imgproc/src/approx.cpp CV_Assert( CV_SEQ_ELTYPE(src_seq) == CV_32SC2 || CV_32SC2 791 modules/imgproc/src/approx.cpp if( CV_SEQ_ELTYPE(src_seq) == CV_32SC2 ) CV_32SC2 1734 modules/imgproc/src/contours.cpp _contours.create((int)c->total, 1, CV_32SC2, i, true); CV_32SC2 548 modules/imgproc/src/convhull.cpp if( CV_SEQ_ELTYPE( ptseq ) != CV_32SC2 ) CV_32SC2 2449 modules/imgproc/src/drawing.cpp CV_Assert( elem_type == CV_32SC2 ); CV_32SC2 1044 modules/imgproc/src/hough.cpp nz = cvCreateSeq( CV_32SC2, sizeof(CvSeq), sizeof(CvPoint), storage ); CV_32SC2 940 modules/imgproc/src/shapedescr.cpp if( CV_SEQ_ELTYPE( contour ) != CV_32SC2 ) CV_32SC2 1071 modules/imgproc/src/shapedescr.cpp if( CV_MAT_TYPE(mat->type) == CV_32SC2 || CV_32SC2 60 modules/imgproc/src/utils.cpp if( eltype != CV_32SC2 && eltype != CV_32FC2 ) CV_32SC2 518 modules/imgproc/test/test_convhull.cpp else if(_points.type() == CV_32SC2) CV_32SC2 579 modules/imgproc/test/test_convhull.cpp CvMat tmp = cvMat( hull->rows, hull->cols, CV_32SC2, hull->data.ptr ); CV_32SC2 1196 modules/imgproc/test/test_convhull.cpp assert( point_type == CV_32SC2 || point_type == CV_32FC2 ); CV_32SC2 1215 modules/imgproc/test/test_convhull.cpp if( point_type == CV_32SC2 ) CV_32SC2 1663 modules/imgproc/test/test_convhull.cpp assert( point_type == CV_32SC2 || point_type == CV_32FC2 ); CV_32SC2 1688 modules/imgproc/test/test_convhull.cpp if( point_type == CV_32SC2 ) CV_32SC2 1427 modules/imgproc/test/test_imgwarp.cpp cv::Mat mat1 = Mat::zeros(3, 1, CV_32SC2); CV_32SC2 109 modules/java/common_test/src/org/opencv/test/utils/ConvertersTest.java Mat src = new Mat(4, 1, CvType.CV_32SC2); CV_32SC2 363 modules/java/common_test/src/org/opencv/test/utils/ConvertersTest.java truth = new Mat(4, 1, CvType.CV_32SC2); CV_32SC2 100 modules/java/generator/src/cpp/converters.cpp CHECK_MAT(mat.type()==CV_32SC2 && mat.cols==1); CV_32SC2 180 modules/java/generator/src/cpp/converters.cpp if(mat.type() == CV_32SC2 && mat.cols == 1) CV_32SC2 199 modules/java/generator/src/cpp/converters.cpp mat.create(count, 1, CV_32SC2); CV_32SC2 40 modules/java/generator/src/java/utils+Converters.java res = new Mat(count, 1, CvType.CV_32SC2); CV_32SC2 166 modules/java/generator/src/java/utils+Converters.java if (type == CvType.CV_32SC2) { CV_32SC2 239 modules/java/generator/src/java/utils+Converters.java res = new Mat(count, 1, CvType.CV_32SC2); CV_32SC2 257 modules/java/generator/src/java/utils+Converters.java if (CvType.CV_32SC2 != m.type() || m.cols() != 1) CV_32SC2 322 modules/ml/src/data.cpp catOfs = Mat::zeros(1, nvars, CV_32SC2); CV_32SC2 1333 modules/objdetect/src/hog.cpp int qangle_type = ocl::Device::getDefault().isIntel() ? CV_32SC2 : CV_8UC2; CV_32SC2 1735 modules/objdetect/src/hog.cpp int qangle_type = ocl::Device::getDefault().isIntel() ? CV_32SC2 : CV_8UC2; CV_32SC2 1352 modules/python/src2/cv2.cpp PUBLISH(CV_32SC2);