Home | History | Annotate | Download | only in src

Lines Matching full:dst_contour

1632         CvSeq *dst_contour = 0;
1642 dst_contour = cvApproxPoly( src_contour, sizeof(CvContour), temp_storage,
1646 dst_contour = cvApproxPoly( dst_contour, sizeof(CvContour), temp_storage,
1649 if( dst_contour->total == 4 )
1654 if( dst_contour->total == 4 && cvCheckContourConvexity(dst_contour) )
1657 double d1, d2, p = cvContourPerimeter(dst_contour);
1658 double area = fabs(cvContourArea(dst_contour, CV_WHOLE_SEQ));
1662 pt[i] = *(CvPoint*)cvGetSeqElem(dst_contour, i);
1689 dst_contour->v_prev = (CvSeq*)parent;
1691 cvSeqPush( root, &dst_contour );
1823 CvSeq *dst_contour = 0;
1833 dst_contour = cvApproxPoly( src_contour, sizeof(CvContour), temp_storage,
1837 dst_contour = cvApproxPoly( dst_contour, sizeof(CvContour), temp_storage,
1840 if( dst_contour->total == 4 )
1845 if( dst_contour->total == 4 && cvCheckContourConvexity(dst_contour) )
1848 double d1, d2, p = cvContourPerimeter(dst_contour);
1849 double area = fabs(cvContourArea(dst_contour, CV_WHOLE_SEQ));
1853 pt[i] = *(CvPoint*)cvGetSeqElem(dst_contour, i);
1888 dst_contour->v_prev = (CvSeq*)parent;
1890 cvSeqPush( root_tmp, &dst_contour );