Home
last modified time | relevance | path

Searched refs:CV_32SC2 (Results 1 – 25 of 41) sorted by relevance

12

/external/opencv3/modules/java/generator/src/cpp/
Dconverters.cpp100 CHECK_MAT(mat.type()==CV_32SC2 && mat.cols==1); in Mat_to_vector_Point()
180 if(mat.type() == CV_32SC2 && mat.cols == 1) in Mat_to_vector_Mat()
199 mat.create(count, 1, CV_32SC2); in vector_Mat_to_Mat()
/external/opencv3/modules/cudafeatures2d/src/
Dbrute_force_matcher.cpp632 _matches.create(2, nQuery, CV_32SC2); in knnMatchAsync()
635 trainIdx = GpuMat(1, nQuery, CV_32SC2, matches.ptr(0)); in knnMatchAsync()
714 _matches.create(3, nQuery, CV_32SC2); in knnMatchAsync()
717 GpuMat trainIdx(1, nQuery, CV_32SC2, matches.ptr(0)); in knnMatchAsync()
718 GpuMat imgIdx(1, nQuery, CV_32SC2, matches.ptr(1)); in knnMatchAsync()
746 …CV_Assert( ((gpu_matches.type() == CV_32SC2) && (gpu_matches.rows == 2 || gpu_matches.rows == 3)) … in knnMatchConvert()
755 if (gpu_matches.type() == CV_32SC2) in knnMatchConvert()
/external/opencv3/modules/imgproc/src/
Dutils.cpp60 if( eltype != CV_32SC2 && eltype != CV_32FC2 ) in cvPointSeqFromMat()
Dapprox.cpp777 CV_Assert( CV_SEQ_ELTYPE(src_seq) == CV_32SC2 || in cvApproxPoly()
791 if( CV_SEQ_ELTYPE(src_seq) == CV_32SC2 ) in cvApproxPoly()
Dshapedescr.cpp940 if( CV_SEQ_ELTYPE( contour ) != CV_32SC2 ) in cvContourArea()
1071 if( CV_MAT_TYPE(mat->type) == CV_32SC2 || in cvBoundingRect()
/external/opencv3/modules/core/misc/java/src/java/
Dcore+CvType.java20 … CV_32SC1 = CV_32SC(1), CV_32SC2 = CV_32SC(2), CV_32SC3 = CV_32SC(3), CV_32SC4 = CV_32SC(4), field in CvType
/external/opencv3/modules/java/generator/src/java/
Dutils+Converters.java40 res = new Mat(count, 1, CvType.CV_32SC2); in vector_Point_to_Mat()
166 if (type == CvType.CV_32SC2) { in Mat_to_vector_Point()
239 res = new Mat(count, 1, CvType.CV_32SC2); in vector_Mat_to_Mat()
257 if (CvType.CV_32SC2 != m.type() || m.cols() != 1) in Mat_to_vector_Mat()
/external/opencv3/modules/python/test/
Dtickets.py26 pts = cv.CreateMat(len(xys), 1, cv.CV_32SC2)
/external/opencv/cv/src/
Dcvpgh.cpp354 if( !CV_IS_SEQ_POLYGON( contour ) || CV_SEQ_ELTYPE( contour ) != CV_32SC2 ) in cvCalcPGH()
Dcvlinefit.cpp662 if( (type!=CV_32FC2 && type!=CV_32FC3 && type!=CV_32SC2 && type!=CV_32SC3) || in cvFitLine()
675 (type!=CV_32FC2 && type!=CV_32FC3 && type!=CV_32SC2 && type!=CV_32SC3) || in cvFitLine()
Dcvconvhull.cpp557 if( CV_SEQ_ELTYPE( ptseq ) != CV_32SC2 ) in cvConvexityDefects()
764 if( CV_SEQ_ELTYPE( contour ) == CV_32SC2 ) in cvCheckContourConvexity()
Dcvapprox.cpp533 assert( CV_SEQ_ELTYPE(src_contour) == CV_32SC2 ); in icvApproxPolyDP_32s()
1001 if( CV_SEQ_ELTYPE(src_seq) == CV_32SC2 ) in cvApproxPoly()
Dcvrotcalipers.cpp422 if( CV_SEQ_ELTYPE( ptseq ) == CV_32SC2 ) in cvMinAreaRect2()
Dcvhough.cpp532 CV_CALL( cvStartWriteSeq( CV_32SC2, sizeof(CvSeq), sizeof(CvPoint), storage, &writer )); in icvHoughLinesProbabalistic()
891 CV_CALL( nz = cvCreateSeq( CV_32SC2, sizeof(CvSeq), sizeof(CvPoint), storage )); in icvHoughCirclesGradient()
Dcvshapedescr.cpp758 if( CV_SEQ_ELTYPE( contour ) != CV_32SC2 ) in cvContourArea()
1162 if( CV_MAT_TYPE(mat->type) == CV_32SC2 || in cvBoundingRect()
/external/opencv3/modules/core/include/opencv2/core/
Dcvdef.h141 #define CV_32SC2 CV_MAKETYPE(CV_32S,2) macro
Dtypes_c.h1403 #define CV_SEQ_ELTYPE_POINT CV_32SC2 /**< (x,y) */
1477 ((CV_SEQ_ELTYPE(seq) == CV_32SC2 || CV_SEQ_ELTYPE(seq) == CV_32FC2))
/external/opencv3/modules/java/common_test/src/org/opencv/test/utils/
DConvertersTest.java109 Mat src = new Mat(4, 1, CvType.CV_32SC2); in testMat_to_vector_Point()
363 truth = new Mat(4, 1, CvType.CV_32SC2); in testVector_Point_to_Mat()
/external/opencv3/modules/imgproc/test/
Dtest_convhull.cpp518 else if(_points.type() == CV_32SC2) in run_func()
579 CvMat tmp = cvMat( hull->rows, hull->cols, CV_32SC2, hull->data.ptr ); in validate_test_results()
1196 assert( point_type == CV_32SC2 || point_type == CV_32FC2 ); in generate_point_set()
1215 if( point_type == CV_32SC2 ) in generate_point_set()
1663 assert( point_type == CV_32SC2 || point_type == CV_32FC2 ); in cvTsGenerateTousledBlob()
1688 if( point_type == CV_32SC2 ) in cvTsGenerateTousledBlob()
/external/opencv3/modules/cudaarithm/perf/
Dperf_core.cpp139 Values(CV_8UC1, CV_8UC4, CV_16UC2, CV_16SC2, CV_32SC1, CV_32SC2, CV_64FC1))) in PERF_TEST_P() argument
/external/opencv3/modules/features2d/src/
Dmatchers.cpp170 ensureSizeIsEnough(1, query_rows, CV_32SC2, trainIdx); in ocl_knnMatchSingle()
222 if(trainIdx.type() != CV_32SC2 && trainIdx.type() != CV_32SC1) return false; in ocl_knnMatchConvert()
227 const int nQuery = trainIdx.type() == CV_32SC2 ? trainIdx.cols : trainIdx.rows; in ocl_knnMatchConvert()
228 const int k = trainIdx.type() == CV_32SC2 ? 2 : trainIdx.cols; in ocl_knnMatchConvert()
/external/opencv/cxcore/include/
Dcxtypes.h505 #define CV_32SC2 CV_MAKETYPE(CV_32S,2) macro
1371 #define CV_SEQ_ELTYPE_POINT CV_32SC2 /* (x,y) */
1446 ((CV_SEQ_ELTYPE(seq) == CV_32SC2 || CV_SEQ_ELTYPE(seq) == CV_32FC2))
/external/opencv3/modules/cudalegacy/src/
Dfgd.cpp361 _contours.create((int)c->total, 1, CV_32SC2, (int)i, true); in seqToContours()
687 dst.create((int) c.size(), 1, CV_32SC2, (int) i, true); in getForegroundRegions()
/external/opencv/cxcore/src/
Dcxdrawing.cpp951 CV_CALL( cvMakeSeqHeaderForArray( CV_32SC2, sizeof(CvSeq), sizeof(CvPoint), in icvEllipseEx()
1170 if( elem_type == CV_32SC2 ) in icvCollectPolyEdges()
2001 cvMakeSeqHeaderForArray( CV_32SC2, sizeof(CvSeq), sizeof(CvPoint), in cvFillPoly()
2543 if( elem_type == CV_32SC2 ) in cvDrawContours()
2560 if( elem_type == CV_32SC2 ) in cvDrawContours()
/external/opencv3/modules/cudaarithm/test/
Dtest_core.cpp238 MatType(CV_32SC2),

12