Searched refs:img_win_height (Results 1 – 2 of 2) sorted by relevance
/external/opencv3/modules/cudaobjdetect/src/cuda/ |
D | hog.cu | 376 int img_win_height = (height - win_height + win_stride_y) / win_stride_y; in compute_confidence_hists() local 379 dim3 grid(divUp(img_win_width, nblocks), img_win_height); in compute_confidence_hists() 438 int img_win_height = (height - win_height + win_stride_y) / win_stride_y; in classify_hists() local 441 dim3 grid(divUp(img_win_width, nblocks), img_win_height); in classify_hists() 487 int img_win_height = (height - win_height + win_stride_y) / win_stride_y; in extract_descrs_by_rows() local 489 dim3 grid(img_win_width, img_win_height); in extract_descrs_by_rows() 536 int img_win_height = (height - win_height + win_stride_y) / win_stride_y; in extract_descrs_by_cols() local 538 dim3 grid(img_win_width, img_win_height); in extract_descrs_by_cols()
|
/external/opencv3/modules/objdetect/src/ |
D | hog.cpp | 1268 int img_win_height = (height - win_height + win_stride_y) / win_stride_y; 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() 1302 int img_win_height = (height - win_height + win_stride_y) / win_stride_y; 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() 1703 int img_win_height = (height - win_height + win_stride_y) / win_stride_y; in ocl_classify_hists() local 1707 size_t globalThreads[3] = { img_win_width * nthreads, img_win_height, 1 }; in ocl_classify_hists()
|