Home
last modified time | relevance | path

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

/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()
Dcvutils.cpp62 if( eltype != CV_32SC2 && eltype != CV_32FC2 ) in cvPointSeqFromMat()
Dcvshapedescr.cpp758 if( CV_SEQ_ELTYPE( contour ) != CV_32SC2 ) in cvContourArea()
1162 if( CV_MAT_TYPE(mat->type) == CV_32SC2 || in cvBoundingRect()
Dcvmoments.cpp413 if( type == CV_32SC2 || type == CV_32FC2 ) in cvMoments()
Dcvlkpyramid.cpp1258 else if( CV_MAT_TYPE(A->type) == CV_32FC2 || CV_MAT_TYPE(A->type) == CV_32SC2 ) in cvEstimateRigidTransform()
/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))
Dcxmisc.h866 tab->fn_2d[CV_32SC2] = (void*)icv##FUNCNAME##_32s_C2##FLAG; \
/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()
Dcxconvert.cpp385 tab->fn_2d[CV_32SC2] = (void*)icvCopy##_32f_##FROM##2##TO##2R; \
/external/opencv/cv/include/
Dcvcompat.h386 CvMat points1 = cvMat( 1, num_points, CV_32SC2, points ); in cvConvexHull()
414 CvMat mat = cvMat( 1, n, CV_32SC2, points ); in cvMinAreaRect()