HomeSort by relevance Sort by last modified time
    Searched refs:xtiles (Results 1 - 2 of 2) sorted by null

  /external/opencv3/modules/imgproc/src/opencl/
moments.cl 9 int src_rows, int src_cols, __global int* mom0, int xtiles)
184 __global int* momout = mom0 + (y0*xtiles + x0) * 10;
  /external/opencv3/modules/imgproc/src/
moments.cpp 497 int xtiles = (sz.width + TILE_SIZE-1)/TILE_SIZE; local
499 int ntiles = xtiles*ytiles;
502 size_t globalsize[] = {xtiles, sz.height}, localsize[] = {1, TILE_SIZE};
505 xtiles).run(2, globalsize, localsize, true);
511 double x = (i % xtiles)*TILE_SIZE, y = (i / xtiles)*TILE_SIZE;

Completed in 110 milliseconds