1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

fixed multi-scale Hough transform (ticket #1320)

This commit is contained in:
Vadim Pisarevsky
2011-08-17 09:18:08 +00:00
parent e71745a390
commit 57ce8ee687
+1 -1
View File
@@ -325,7 +325,7 @@ icvHoughLinesSDiv( const CvMat* img,
{
for( ti = 0; ti < tn; ti++ )
{
if( caccum[ri * tn + ti > threshold] )
if( caccum[ri * tn + ti] > threshold )
{
count++;
}