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

  /external/opencv3/modules/cudaimgproc/src/cuda/
clahe.cu 111 int redistBatch = totalClipped / 256;
112 tHistVal += redistBatch;
114 int residual = totalClipped - redistBatch * 256;
  /external/opencv3/modules/imgproc/src/opencl/
clahe.cl 200 int redistBatch = totalClipped / 256;
201 tHistVal += redistBatch;
203 int residual = totalClipped - redistBatch * 256;
  /external/opencv3/modules/imgproc/src/
clahe.cpp 209 int redistBatch = clipped / histSize;
210 int residual = clipped - redistBatch * histSize;
213 tileHist[i] += redistBatch;

Completed in 972 milliseconds