Searched refs:block_stride_x (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/modules/cudaobjdetect/src/cuda/ |
D | hog.cu | 90 void set_up_constants(int nbins, int block_stride_x, int block_stride_y, in set_up_constants() argument 94 … cudaSafeCall( cudaMemcpyToSymbol(cblock_stride_x, &block_stride_x, sizeof(block_stride_x)) ); in set_up_constants() 195 void compute_hists(int nbins, int block_stride_x, int block_stride_y, in compute_hists() argument 201 int img_block_width = (width - CELLS_PER_BLOCK_X * CELL_WIDTH + block_stride_x) / in compute_hists() 202 block_stride_x; in compute_hists() 295 void normalize_hists(int nbins, int block_stride_x, int block_stride_y, in normalize_hists() argument 304 … int img_block_width = (width - CELLS_PER_BLOCK_X * CELL_WIDTH + block_stride_x) / block_stride_x; in normalize_hists() 366 …oid compute_confidence_hists(int win_height, int win_width, int block_stride_y, int block_stride_x, in compute_confidence_hists() argument 373 int win_block_stride_x = win_stride_x / block_stride_x; in compute_confidence_hists() 384 int img_block_width = (width - CELLS_PER_BLOCK_X * CELL_WIDTH + block_stride_x) / in compute_confidence_hists() [all …]
|
/external/opencv3/modules/cudaobjdetect/src/ |
D | hog.cpp | 58 void set_up_constants(int nbins, int block_stride_x, int block_stride_y, 61 void compute_hists(int nbins, int block_stride_x, int blovck_stride_y, 65 void normalize_hists(int nbins, int block_stride_x, int block_stride_y, 69 int block_stride_x, int win_stride_y, int win_stride_x, int height, 73 …oid compute_confidence_hists(int win_height, int win_width, int block_stride_y, int block_stride_x, 77 … void extract_descrs_by_rows(int win_height, int win_width, int block_stride_y, int block_stride_x, 80 … void extract_descrs_by_cols(int win_height, int win_width, int block_stride_y, int block_stride_x,
|
/external/opencv3/modules/objdetect/src/ |
D | hog.cpp | 1130 static bool ocl_compute_hists(int nbins, int block_stride_x, int block_stride_y, int height, int wi… in ocl_compute_hists() argument 1146 int img_block_width = (width - CELLS_PER_BLOCK_X * CELL_WIDTH + block_stride_x)/block_stride_x; in ocl_compute_hists() 1164 idx = k.set(idx, block_stride_x); in ocl_compute_hists() 1190 static bool ocl_normalize_hists(int nbins, int block_stride_x, int block_stride_y, in ocl_normalize_hists() argument 1194 int img_block_width = (width - CELLS_PER_BLOCK_X * CELL_WIDTH + block_stride_x) in ocl_normalize_hists() 1195 / block_stride_x; in ocl_normalize_hists() 1257 …escrs_by_rows(int win_height, int win_width, int block_stride_y, int block_stride_x, int win_strid… in ocl_extract_descrs_by_rows() argument 1265 int win_block_stride_x = win_stride_x / block_stride_x; in ocl_extract_descrs_by_rows() 1269 int img_block_width = (width - CELLS_PER_BLOCK_X * CELL_WIDTH + block_stride_x) / in ocl_extract_descrs_by_rows() 1270 block_stride_x; in ocl_extract_descrs_by_rows() [all …]
|