Merge pull request #3637 from wangyan42164:LBP_mad24_opt

pull/3646/merge
Vadim Pisarevsky 10 years ago
commit bdebf4cea7
  1. 4
      modules/objdetect/src/opencl/cascadedetect.cl

@ -397,8 +397,8 @@ __kernel void runLBPClassifierStumpSimple(
for( tileIdx = groupIdx; tileIdx < totalTiles; tileIdx += ngroups )
{
int iy = ((tileIdx / ntiles.x)*local_size_y + ly)*ystep;
int ix = ((tileIdx % ntiles.x)*local_size_x + lx)*ystep;
int iy = mad24((tileIdx / ntiles.x), local_size_y, ly) * ystep;
int ix = mad24((tileIdx % ntiles.x), local_size_x, lx) * ystep;
if( ix < worksize.x && iy < worksize.y )
{

Loading…
Cancel
Save