Searched refs:CV_32SC2 (Results 1 – 15 of 15) sorted by relevance
/external/opencv/cv/src/ |
D | cvpgh.cpp | 354 if( !CV_IS_SEQ_POLYGON( contour ) || CV_SEQ_ELTYPE( contour ) != CV_32SC2 ) in cvCalcPGH()
|
D | cvlinefit.cpp | 662 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()
|
D | cvconvhull.cpp | 557 if( CV_SEQ_ELTYPE( ptseq ) != CV_32SC2 ) in cvConvexityDefects() 764 if( CV_SEQ_ELTYPE( contour ) == CV_32SC2 ) in cvCheckContourConvexity()
|
D | cvapprox.cpp | 533 assert( CV_SEQ_ELTYPE(src_contour) == CV_32SC2 ); in icvApproxPolyDP_32s() 1001 if( CV_SEQ_ELTYPE(src_seq) == CV_32SC2 ) in cvApproxPoly()
|
D | cvrotcalipers.cpp | 422 if( CV_SEQ_ELTYPE( ptseq ) == CV_32SC2 ) in cvMinAreaRect2()
|
D | cvhough.cpp | 532 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()
|
D | cvutils.cpp | 62 if( eltype != CV_32SC2 && eltype != CV_32FC2 ) in cvPointSeqFromMat()
|
D | cvshapedescr.cpp | 758 if( CV_SEQ_ELTYPE( contour ) != CV_32SC2 ) in cvContourArea() 1162 if( CV_MAT_TYPE(mat->type) == CV_32SC2 || in cvBoundingRect()
|
D | cvmoments.cpp | 413 if( type == CV_32SC2 || type == CV_32FC2 ) in cvMoments()
|
D | cvlkpyramid.cpp | 1258 else if( CV_MAT_TYPE(A->type) == CV_32FC2 || CV_MAT_TYPE(A->type) == CV_32SC2 ) in cvEstimateRigidTransform()
|
/external/opencv/cxcore/include/ |
D | cxtypes.h | 505 #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))
|
D | cxmisc.h | 866 tab->fn_2d[CV_32SC2] = (void*)icv##FUNCNAME##_32s_C2##FLAG; \
|
/external/opencv/cxcore/src/ |
D | cxdrawing.cpp | 951 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()
|
D | cxconvert.cpp | 385 tab->fn_2d[CV_32SC2] = (void*)icvCopy##_32f_##FROM##2##TO##2R; \
|
/external/opencv/cv/include/ |
D | cvcompat.h | 386 CvMat points1 = cvMat( 1, num_points, CV_32SC2, points ); in cvConvexHull() 414 CvMat mat = cvMat( 1, n, CV_32SC2, points ); in cvMinAreaRect()
|