提交 b0aae19f 编写于 作者: V Vadim Pisarevsky

probably fixed parallel face detector (i.e. built with TBB), ticket #1185....

probably fixed parallel face detector (i.e. built with TBB), ticket #1185. Thanks to mengw for the patch
上级 af00cd5b
......@@ -850,6 +850,10 @@ struct HaarDetectObjects_ScaleImage_Invoker
Size winSize0 = cascade->orig_window_size;
Size winSize(cvRound(winSize0.width*factor), cvRound(winSize0.height*factor));
int y1 = range.begin()*stripSize, y2 = min(range.end()*stripSize, sum1.rows - 1 - winSize0.height);
if (y2 <= y1 || sum1.cols <= 1 + winSize0.width)
return;
Size ssz(sum1.cols - 1 - winSize0.width, y2 - y1);
int x, y, ystep = factor > 2 ? 1 : 2;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册