Searched refs:colOfs (Results 1 – 1 of 1) sorted by relevance
/external/opencv3/modules/cudaobjdetect/src/cuda/ |
D | hog.cu | 755 __global__ void resize_for_hog_kernel(float sx, float sy, PtrStepSz<uchar> dst, int colOfs) in resize_for_hog_kernel() argument 761 dst.ptr(y)[x] = tex2D(resize8UC1_tex, x * sx + colOfs, y * sy) * 255; in resize_for_hog_kernel() 764 __global__ void resize_for_hog_kernel(float sx, float sy, PtrStepSz<uchar4> dst, int colOfs) in resize_for_hog_kernel() argument 771 float4 val = tex2D(resize8UC4_tex, x * sx + colOfs, y * sy); in resize_for_hog_kernel() 782 int colOfs = 0; in resize_for_hog() local 789 colOfs = static_cast<int>( texOfs/sizeof(T) ); in resize_for_hog() 800 resize_for_hog_kernel<<<grid, threads>>>(sx, sy, (PtrStepSz<T>)dst, colOfs); in resize_for_hog()
|