From c0506314b2b4c51e80ecbdf9d35bfb3e32eff780 Mon Sep 17 00:00:00 2001 From: Alexander Shishkov Date: Wed, 21 Mar 2012 12:06:49 +0000 Subject: [PATCH] fixed #1436 --- modules/imgproc/src/hough.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/imgproc/src/hough.cpp b/modules/imgproc/src/hough.cpp index 54d1f44..bb955a4 100644 --- a/modules/imgproc/src/hough.cpp +++ b/modules/imgproc/src/hough.cpp @@ -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: -- 2.7.4