Searched refs:block_stride_y (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 95 … cudaSafeCall( cudaMemcpyToSymbol(cblock_stride_y, &block_stride_y, sizeof(block_stride_y)) ); in set_up_constants() 195 void compute_hists(int nbins, int block_stride_x, int block_stride_y, in compute_hists() argument 203 int img_block_height = (height - CELLS_PER_BLOCK_Y * CELL_HEIGHT + block_stride_y) / in compute_hists() 204 block_stride_y; in compute_hists() 295 void normalize_hists(int nbins, int block_stride_x, int block_stride_y, in normalize_hists() argument 305 …nt img_block_height = (height - CELLS_PER_BLOCK_Y * CELL_HEIGHT + block_stride_y) / block_stride_y; in normalize_hists() 366 …void compute_confidence_hists(int win_height, int win_width, int block_stride_y, int block_stride_… in compute_confidence_hists() argument 374 int win_block_stride_y = win_stride_y / block_stride_y; in compute_confidence_hists() 428 void classify_hists(int win_height, int win_width, int block_stride_y, int block_stride_x, in classify_hists() argument [all …]
|
/external/opencv3/modules/cudaobjdetect/src/ |
D | hog.cpp | 58 void set_up_constants(int nbins, int block_stride_x, int block_stride_y, 65 void normalize_hists(int nbins, int block_stride_x, int block_stride_y, 68 void classify_hists(int win_height, int win_width, int block_stride_y, 73 …void compute_confidence_hists(int win_height, int win_width, int block_stride_y, int block_stride_… 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 1147 … int img_block_height = (height - CELLS_PER_BLOCK_Y * CELL_HEIGHT + block_stride_y)/block_stride_y; in ocl_compute_hists() 1165 idx = k.set(idx, block_stride_y); 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 1196 int img_block_height = (height - CELLS_PER_BLOCK_Y * CELL_HEIGHT + block_stride_y) in ocl_normalize_hists() 1197 / block_stride_y; in ocl_normalize_hists() 1257 static bool ocl_extract_descrs_by_rows(int win_height, int win_width, int block_stride_y, int block… in ocl_extract_descrs_by_rows() argument 1266 int win_block_stride_y = win_stride_y / block_stride_y; in ocl_extract_descrs_by_rows() 1291 static bool ocl_extract_descrs_by_cols(int win_height, int win_width, int block_stride_y, int block… in ocl_extract_descrs_by_cols() argument 1300 int win_block_stride_y = win_stride_y / block_stride_y; in ocl_extract_descrs_by_cols() [all …]
|