Lines Matching refs:CvSeq
394 CV_IMPL CvSeq*
398 union { CvContour* c; CvSeq* s; } hull; in cvConvexHull2()
403 CvSeq hull_header; in cvConvexHull2()
405 CvSeq* ptseq = 0; in cvConvexHull2()
406 CvSeq* hullseq = 0; in cvConvexHull2()
410 ptseq = (CvSeq*)array; in cvConvexHull2()
513 CV_IMPL CvSeq* cvConvexityDefects( const CvArr* array, in cvConvexityDefects()
517 CvSeq* defects = 0; in cvConvexityDefects()
526 CvSeq hull_header; in cvConvexityDefects()
528 CvSeq *ptseq = (CvSeq*)array, *hull = (CvSeq*)hullarray; in cvConvexityDefects()
587 defects = cvCreateSeq( CV_SEQ_KIND_GENERIC, sizeof(CvSeq), sizeof(CvConvexityDefect), storage ); in cvConvexityDefects()
719 CvSeq* contour = (CvSeq*)array; in cvCheckContourConvexity()