Home | History | Annotate | Download | only in src

Lines Matching refs:header_size

60                          int                    header_size,
89 if( header_size < (int)sizeof(CvContour) )
93 header_size, sizeof( CvPoint ), storage, &writer );
518 icvApproxPolyDP_32s( CvSeq* src_contour, int header_size,
534 cvStartWriteSeq( src_contour->flags, header_size, sizeof(pt), storage, &writer );
722 icvApproxPolyDP_32f( CvSeq* src_contour, int header_size,
738 cvStartWriteSeq( src_contour->flags, header_size, sizeof(pt), storage, &writer );
926 cvApproxPoly( const void* array, int header_size,
962 if( header_size < 0 )
963 CV_ERROR( CV_StsOutOfRange, "header_size is negative. "
964 "Pass 0 to make the destination header_size == input header_size" );
966 if( header_size == 0 )
967 header_size = src_seq->header_size;
982 if( header_size == 0 )
983 header_size = src_seq->header_size;
985 if( header_size < (int)sizeof(CvContour) )
1003 IPPI_CALL( icvApproxPolyDP_32s( src_seq, header_size, storage,
1008 IPPI_CALL( icvApproxPolyDP_32f( src_seq, header_size, storage,
1019 if( header_size >= (int)sizeof(CvContour))