Searched refs:img_win_width (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/modules/cudaobjdetect/src/cuda/ |
D | hog.cu | 334 …__global__ void compute_confidence_hists_kernel_many_blocks(const int img_win_width, const int img… in compute_confidence_hists_kernel_many_blocks() argument 340 if (blockIdx.x * blockDim.z + win_x >= img_win_width) in compute_confidence_hists_kernel_many_blocks() 362 … confidences[blockIdx.y * img_win_width + blockIdx.x * blockDim.z + win_x] = product + free_coef; in compute_confidence_hists_kernel_many_blocks() 375 int img_win_width = (width - win_width + win_stride_x) / win_stride_x; in compute_confidence_hists() local 379 dim3 grid(divUp(img_win_width, nblocks), img_win_height); in compute_confidence_hists() 387 img_win_width, img_block_width, win_block_stride_x, win_block_stride_y, in compute_confidence_hists() 396 …__global__ void classify_hists_kernel_many_blocks(const int img_win_width, const int img_block_wid… in classify_hists_kernel_many_blocks() argument 402 if (blockIdx.x * blockDim.z + win_x >= img_win_width) in classify_hists_kernel_many_blocks() 424 …labels[blockIdx.y * img_win_width + blockIdx.x * blockDim.z + win_x] = (product + free_coef >= thr… in classify_hists_kernel_many_blocks() 437 int img_win_width = (width - win_width + win_stride_x) / win_stride_x; in classify_hists() local [all …]
|
/external/opencv3/modules/objdetect/src/opencl/ |
D | objdetect_hog.cl | 293 const int img_win_width, const int img_block_width, 356 labels[gidY * img_win_width + gidX] = (product + free_coef >= threshold); 366 const int img_win_width, const int img_block_width, 426 labels[gidY * img_win_width + gidX] = (product + free_coef >= threshold); 435 const int img_win_width, const int img_block_width, 496 labels[gidY * img_win_width + gidX] = (product + free_coef >= threshold);
|
/external/opencv3/modules/objdetect/src/ |
D | hog.cpp | 1267 int img_win_width = (width - win_width + win_stride_x) / win_stride_x; in ocl_extract_descrs_by_rows() local 1274 size_t globalThreads[3] = { img_win_width * NTHREADS, img_win_height, 1 }; in ocl_extract_descrs_by_rows() 1301 int img_win_width = (width - win_width + win_stride_x) / win_stride_x; in ocl_extract_descrs_by_cols() local 1308 size_t globalThreads[3] = { img_win_width * NTHREADS, img_win_height, 1 }; in ocl_extract_descrs_by_cols() 1702 int img_win_width = (width - win_width + win_stride_x) / win_stride_x; in ocl_classify_hists() local 1707 size_t globalThreads[3] = { img_win_width * nthreads, img_win_height, 1 }; in ocl_classify_hists() 1711 idx = k.set(idx, img_win_width); in ocl_classify_hists()
|