Lines Matching refs:header_size
60 int header_size, in icvApproximateChainTC89() argument
89 if( header_size < (int)sizeof(CvContour) ) in icvApproximateChainTC89()
93 header_size, sizeof( CvPoint ), storage, &writer ); in icvApproximateChainTC89()
518 icvApproxPolyDP_32s( CvSeq* src_contour, int header_size, in icvApproxPolyDP_32s() argument
534 cvStartWriteSeq( src_contour->flags, header_size, sizeof(pt), storage, &writer ); in icvApproxPolyDP_32s()
722 icvApproxPolyDP_32f( CvSeq* src_contour, int header_size, in icvApproxPolyDP_32f() argument
738 cvStartWriteSeq( src_contour->flags, header_size, sizeof(pt), storage, &writer ); in icvApproxPolyDP_32f()
926 cvApproxPoly( const void* array, int header_size, in cvApproxPoly() argument
962 if( header_size < 0 ) in cvApproxPoly()
966 if( header_size == 0 ) in cvApproxPoly()
967 header_size = src_seq->header_size; in cvApproxPoly()
982 if( header_size == 0 ) in cvApproxPoly()
983 header_size = src_seq->header_size; in cvApproxPoly()
985 if( header_size < (int)sizeof(CvContour) ) in cvApproxPoly()
1003 IPPI_CALL( icvApproxPolyDP_32s( src_seq, header_size, storage, in cvApproxPoly()
1008 IPPI_CALL( icvApproxPolyDP_32f( src_seq, header_size, storage, in cvApproxPoly()
1019 if( header_size >= (int)sizeof(CvContour)) in cvApproxPoly()