mirror of
https://github.com/opencv/opencv.git
synced 2024-11-25 11:40:44 +08:00
fixed #1436
This commit is contained in:
parent
fedff0922e
commit
c0506314b2
@ -459,7 +459,7 @@ icvHoughLinesSDiv( const CvMat* img,
|
||||
\****************************************************************************************/
|
||||
|
||||
static void
|
||||
icvHoughLinesProbabalistic( CvMat* image,
|
||||
icvHoughLinesProbabilistic( CvMat* image,
|
||||
float rho, float theta, int threshold,
|
||||
int lineLength, int lineGap,
|
||||
CvSeq *lines, int linesMax )
|
||||
@ -771,7 +771,7 @@ cvHoughLines2( CvArr* src_image, void* lineStorage, int method,
|
||||
threshold, iparam1, iparam2, lines, linesMax );
|
||||
break;
|
||||
case CV_HOUGH_PROBABILISTIC:
|
||||
icvHoughLinesProbabalistic( img, (float)rho, (float)theta,
|
||||
icvHoughLinesProbabilistic( img, (float)rho, (float)theta,
|
||||
threshold, iparam1, iparam2, lines, linesMax );
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user