Commit c0506314 authored by Alexander Shishkov's avatar Alexander Shishkov

fixed #1436

parent fedff092
...@@ -459,7 +459,7 @@ icvHoughLinesSDiv( const CvMat* img, ...@@ -459,7 +459,7 @@ icvHoughLinesSDiv( const CvMat* img,
\****************************************************************************************/ \****************************************************************************************/
static void static void
icvHoughLinesProbabalistic( CvMat* image, icvHoughLinesProbabilistic( CvMat* image,
float rho, float theta, int threshold, float rho, float theta, int threshold,
int lineLength, int lineGap, int lineLength, int lineGap,
CvSeq *lines, int linesMax ) CvSeq *lines, int linesMax )
...@@ -771,7 +771,7 @@ cvHoughLines2( CvArr* src_image, void* lineStorage, int method, ...@@ -771,7 +771,7 @@ cvHoughLines2( CvArr* src_image, void* lineStorage, int method,
threshold, iparam1, iparam2, lines, linesMax ); threshold, iparam1, iparam2, lines, linesMax );
break; break;
case CV_HOUGH_PROBABILISTIC: case CV_HOUGH_PROBABILISTIC:
icvHoughLinesProbabalistic( img, (float)rho, (float)theta, icvHoughLinesProbabilistic( img, (float)rho, (float)theta,
threshold, iparam1, iparam2, lines, linesMax ); threshold, iparam1, iparam2, lines, linesMax );
break; break;
default: default:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment