Home
last modified time | relevance | path

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

/external/opencv3/modules/objdetect/src/opencl/
Dobjdetect_hog.cl67 const int cnbins, const int cblock_hist_size, const int img_block_width,
148 if ((tid < cblock_hist_size) && (gid < blocks_total))
151 (gidY * img_block_width + gidX) * cblock_hist_size;
292 const int cdescr_width, const int cdescr_height, const int cblock_hist_size,
303 img_block_width + gidX * win_block_stride_x) * cblock_hist_size;
310 hist[i * img_block_width * cblock_hist_size + tid];
365 const int cdescr_width, const int cdescr_height, const int cblock_hist_size,
376 img_block_width + gidX * win_block_stride_x) * cblock_hist_size;
383 hist[i * img_block_width * cblock_hist_size + tid];
434 const int cdescr_size, const int cdescr_width, const int cblock_hist_size,
[all …]
/external/opencv3/modules/cudaobjdetect/src/cuda/
Dhog.cu65 __constant__ int cblock_hist_size; variable
100 … cudaSafeCall( cudaMemcpyToSymbol(cblock_hist_size, &block_hist_size, sizeof(block_hist_size)) ); in set_up_constants()
187 cblock_hist_size; in compute_hists_kernel_many_blocks()
190 if (tid < cblock_hist_size) in compute_hists_kernel_many_blocks()
191 block_hist[tid] = final_hist[block_x * cblock_hist_size + tid]; in compute_hists_kernel_many_blocks()
345 cblock_hist_size; in compute_confidence_hists_kernel_many_blocks()
352 … product += coefs[i] * hist[offset_y * img_block_width * cblock_hist_size + offset_x]; in compute_confidence_hists_kernel_many_blocks()
407 cblock_hist_size; in classify_hists_kernel_many_blocks()
414 … product += coefs[i] * hist[offset_y * img_block_width * cblock_hist_size + offset_x]; in classify_hists_kernel_many_blocks()
464 blockIdx.x * win_block_stride_x) * cblock_hist_size; in extract_descrs_by_rows_kernel()
[all …]