Searched refs:block_radius (Results 1 – 3 of 3) sorted by relevance
/external/opencv3/modules/photo/src/cuda/ |
D | nlm.cu | 68 …t PtrStep<T> src, PtrStepSz<T> dst, const B b, int search_radius, int block_radius, float noise_mu… in nlm_kernel() argument 78 int bsize = search_radius + block_radius; in nlm_kernel() 91 for(float ty = -block_radius; ty <= block_radius; ++ty) in nlm_kernel() 92 for(float tx = -block_radius; tx <= block_radius; ++tx) in nlm_kernel() 115 for(float ty = -block_radius; ty <= block_radius; ++ty) in nlm_kernel() 116 for(float tx = -block_radius; tx <= block_radius; ++tx) in nlm_kernel() 136 …void nlm_caller(const PtrStepSzb src, PtrStepSzb dst, int search_radius, int block_radius, float h… in nlm_caller() argument 143 int block_window = 2 * block_radius + 1; in nlm_caller() 148 …<<grid, block>>>((PtrStepSz<T>)src, (PtrStepSz<T>)dst, b, search_radius, block_radius, noise_mult); in nlm_caller() 156 …rce_gpu(const PtrStepSzb& src, PtrStepSzb dst, int search_radius, int block_radius, float h, int b… in nlm_bruteforce_gpu() argument [all …]
|
/external/opencv3/modules/cudalegacy/src/cuda/ |
D | bm_fast.cu | 74 int block_radius; member 87 search_radius(search_window_ / 2), block_radius(block_window_ / 2), in FastOptFlowBM() 112 for (int tx = -block_radius; tx <= block_radius; ++tx) in initSums_BruteForce() 115 for (int ty = -block_radius; ty <= block_radius; ++ty) in initSums_BruteForce() 123 col_sums(tx + block_radius, index) = col_sum; in initSums_BruteForce() 138 int ax = j + block_radius; in shiftRight_FirstRow() 141 int bx = j + x - search_radius + block_radius; in shiftRight_FirstRow() 145 for (int ty = -block_radius; ty <= block_radius; ++ty) in shiftRight_FirstRow() 158 int ax = j + block_radius; in shiftRight_UpSums() 160 T a_up = I0(ay - block_radius - 1, ax); in shiftRight_UpSums() [all …]
|
/external/opencv3/modules/photo/src/ |
D | denoising.cuda.cpp | 77 …rce_gpu(const PtrStepSzb& src, PtrStepSzb dst, int search_radius, int block_radius, float h, int b… 84 …func_t)(const PtrStepSzb& src, PtrStepSzb dst, int search_radius, int block_radius, float h, int b… in nonLocalMeans()
|