提交 ec45453b 编写于 作者: T Takahiro Horikawa

#523 Fix the problem where the MaxSize parameter in cvHaarDetectObjects does...

#523 Fix the problem where the MaxSize parameter in cvHaarDetectObjects does not work when the flag CV_HAAR_SCALE_IMAGE is not set.
上级 5eac0419
......@@ -1531,6 +1531,13 @@ cvHaarDetectObjectsForROC( const CvArr* _img,
continue;
}
if ( winSize.width > maxSize.width || winSize.height > maxSize.height )
{
if( !findBiggestObject )
break;
continue;
}
cvSetImagesForHaarClassifierCascade( cascade, sum, sqsum, tilted, factor );
cvZero( temp );
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册