probably fixed parallel face detector (i.e. built with TBB), ticket #1185. Thanks to mengw for the patch
This commit is contained in:
parent
af00cd5b75
commit
b0aae19fb4
@ -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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user