Home
last modified time | relevance | path

Searched refs:CELLS_PER_BLOCK_Y (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/cudaobjdetect/src/cuda/
Dhog.cu56 #define CELLS_PER_BLOCK_Y 2 macro
99 int block_hist_size = nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y; in set_up_constants()
143 float* hist = hists + 12 * (cell_y * blockDim.z * CELLS_PER_BLOCK_Y + 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()
203 int img_block_height = (height - CELLS_PER_BLOCK_Y * CELL_HEIGHT + block_stride_y) / in compute_hists()
215 … int hists_size = (nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y * 12 * nblocks) * sizeof(float); in compute_hists()
216 … int final_hists_size = (nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y * nblocks) * sizeof(float); in compute_hists()
300 int block_hist_size = nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y; in normalize_hists()
305 …int img_block_height = (height - CELLS_PER_BLOCK_Y * CELL_HEIGHT + block_stride_y) / block_stride_… in normalize_hists()
/external/opencv3/modules/objdetect/src/opencl/
Dobjdetect_hog.cl49 #define CELLS_PER_BLOCK_Y 2
88 CELLS_PER_BLOCK_Y * 12 + CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y);
90 (CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y * 12);
100 __local float* hist = hists + 12 * (cell_y * CELLS_PER_BLOCK_Y + cell_x) +
147 int tid = (cell_y * CELLS_PER_BLOCK_Y + cell_x) * 12 + cell_thread_x;
/external/opencv3/modules/objdetect/src/
Dhog.cpp1128 #define CELLS_PER_BLOCK_Y 2 macro
1147 … int img_block_height = (height - CELLS_PER_BLOCK_Y * CELL_HEIGHT + block_stride_y)/block_stride_y; in ocl_compute_hists()
1158 int hists_size = (nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y * 12) * sizeof(float); in ocl_compute_hists()
1159 int final_hists_size = (nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y) * sizeof(float); in ocl_compute_hists()
1193 int block_hist_size = nbins * CELLS_PER_BLOCK_X * CELLS_PER_BLOCK_Y; in ocl_normalize_hists()
1196 int img_block_height = (height - CELLS_PER_BLOCK_Y * CELL_HEIGHT + block_stride_y) in ocl_normalize_hists()