Lines Matching refs:lines
80 to be a candidate for line. lines is the output
82 Functions return the actual number of found lines.
86 int threshold, CvSeq *lines, int linesMax )
153 // stage 3. sort the detected lines by accumulator value
156 // stage 4. store the first min(total,linesMax) lines to the output buffer
167 cvSeqPush( lines, &line );
194 CvSeq* lines, int linesMax )
348 icvHoughLinesStandard( img, rho, theta, threshold, lines, linesMax );
455 cvSeqPush( lines, &line );
457 if( lines->total >= linesMax )
486 CvSeq *lines, int linesMax )
718 cvSeqPush( lines, &lr );
719 if( lines->total >= linesMax )
752 CvSeq* lines = 0;
783 CV_CALL( lines = cvCreateSeq( lineType, sizeof(CvSeq), elemSize, (CvMemStorage*)lineStorage ));
797 CV_CALL( lines = cvMakeSeqHeaderForArray( lineType, sizeof(CvSeq), elemSize, mat->data.ptr,
799 linesMax = lines->total;
800 CV_CALL( cvClearSeq( lines ));
814 (float)theta, threshold, lines, linesMax ));
818 threshold, iparam1, iparam2, lines, linesMax ));
822 threshold, iparam1, iparam2, lines, linesMax ));
831 mat->cols = lines->total;
833 mat->rows = lines->total;
837 result = lines;