Home
last modified time | relevance | path

Searched refs:cell_y (Results 1 – 2 of 2) sorted by relevance

/external/opencv3/modules/cudaobjdetect/src/cuda/
Dhog.cu123 const int cell_y = threadIdx.y; in compute_hists_kernel_many_blocks() local
135 const int offset_y = blockIdx.y * cblock_stride_y + 4 * cell_y; in compute_hists_kernel_many_blocks()
143 float* hist = hists + 12 * (cell_y * blockDim.z * CELLS_PER_BLOCK_Y + in compute_hists_kernel_many_blocks()
160 int dist_center_y = dist_y - 4 * (1 - 2 * cell_y); in compute_hists_kernel_many_blocks()
178 final_hist[((cell_x + block_x * 2) * 2 + cell_y) * cnbins + bin_id] in compute_hists_kernel_many_blocks()
189 int tid = (cell_y * CELLS_PER_BLOCK_Y + cell_x) * 16 + cell_thread_x; in compute_hists_kernel_many_blocks()
/external/opencv3/modules/objdetect/src/opencl/
Dobjdetect_hog.cl84 const int cell_y = lidY;
93 const int offset_y = gidY * cblock_stride_y + (cell_y << 2);
100 __local float* hist = hists + 12 * (cell_y * CELLS_PER_BLOCK_Y + cell_x) +
117 int dist_center_y = dist_y - 4 * (1 - 2 * cell_y);
141 final_hist[(cell_x * 2 + cell_y) * cnbins + bin_id] =
147 int tid = (cell_y * CELLS_PER_BLOCK_Y + cell_x) * 12 + cell_thread_x;