OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:img_block_width
(Results
1 - 4
of
4
) sorted by null
/external/opencv3/modules/cudaobjdetect/src/cuda/
hog.cu
118
__global__ void compute_hists_kernel_many_blocks(const int
img_block_width
, const PtrStepf grad,
126
if (blockIdx.x * blockDim.z + block_x >=
img_block_width
)
185
float* block_hist = block_hists + (blockIdx.y *
img_block_width
+
201
int
img_block_width
= (width - CELLS_PER_BLOCK_X * CELL_WIDTH + block_stride_x) /
206
dim3 grid(divUp(
img_block_width
, nblocks), img_block_height);
219
img_block_width
, grad, qangle, scale, block_hists);
264
const int
img_block_width
,
267
if (blockIdx.x * blockDim.z + threadIdx.z >=
img_block_width
)
270
float* hist = block_hists + (blockIdx.y *
img_block_width
+
304
int
img_block_width
= (width - CELLS_PER_BLOCK_X * CELL_WIDTH + block_stride_x) / block_stride_x
[
all
...]
/external/opencv3/modules/objdetect/src/opencl/
objdetect_hog.cl
67
const int cnbins, const int cblock_hist_size, const int
img_block_width
,
77
const int gidY = gid /
img_block_width
;
78
const int gidX = gid - gidY *
img_block_width
;
151
(gidY *
img_block_width
+ gidX) * cblock_hist_size;
254
const int nthreads, const int block_hist_size, const int
img_block_width
,
261
__global float* hist = block_hists + (gidY *
img_block_width
+ gidX) *
293
const int img_win_width, const int
img_block_width
,
303
img_block_width
+ gidX * win_block_stride_x) * cblock_hist_size;
310
hist[i *
img_block_width
* cblock_hist_size + tid];
366
const int img_win_width, const int
img_block_width
,
[
all
...]
/external/opencv3/modules/objdetect/
opencl_kernels_objdetect.cpp
601
"const int cnbins, const int cblock_hist_size, const int
img_block_width
,\n"
611
"const int gidY = gid /
img_block_width
;\n"
612
"const int gidX = gid - gidY *
img_block_width
;\n"
670
"(gidY *
img_block_width
+ gidX) * cblock_hist_size;\n"
756
"const int nthreads, const int block_hist_size, const int
img_block_width
,\n"
762
"__global float* hist = block_hists + (gidY *
img_block_width
+ gidX) *\n"
782
"const int img_win_width, const int
img_block_width
,\n"
791
"
img_block_width
+ gidX * win_block_stride_x) * cblock_hist_size;\n"
796
"hist[i *
img_block_width
* cblock_hist_size + tid];\n"
840
"const int img_win_width, const int
img_block_width
,\n
[
all
...]
/external/opencv3/modules/objdetect/src/
hog.cpp
1146
int
img_block_width
= (width - CELLS_PER_BLOCK_X * CELL_WIDTH + block_stride_x)\/block_stride_x;
local
1194
int
img_block_width
= (width - CELLS_PER_BLOCK_X * CELL_WIDTH + block_stride_x)
local
1269
int
img_block_width
= (width - CELLS_PER_BLOCK_X * CELL_WIDTH + block_stride_x) \/
local
1303
int
img_block_width
= (width - CELLS_PER_BLOCK_X * CELL_WIDTH + block_stride_x) \/
local
1704
int
img_block_width
= (width - CELLS_PER_BLOCK_X * CELL_WIDTH + block_stride_x) \/
local
[
all
...]
Completed in 178 milliseconds