Home
last modified time | relevance | path

Searched refs:image_sum (Results 1 – 3 of 3) sorted by relevance

/external/opencv3/modules/imgproc/src/opencl/
Dmatch_template.cl365 T image_sum = (T)(0), value;
369 image_sum = mad(value, template_sum , image_sum);
372 *(__global float *)(dst + dst_idx) -= convertToDT(image_sum);
387 T image_sum = (T)(0), value, temp_sum;
398 image_sum = mad(value, temp_sum , 0);
401 *(__global float *)(dst + dst_idx) -= convertToDT(image_sum);
420 T image_sum = (T)(0), value, temp_sum;
431 image_sum = mad(value, temp_sum , image_sum);
434 *(__global float *)(dst + dst_idx) -= convertToDT(image_sum);
/external/opencv3/modules/cudaimgproc/src/cuda/
Dmatch_template.cu337 …Kernel_CCOFF_8U(int w, int h, float templ_sum_scale, const PtrStep<int> image_sum, PtrStepSzf resu… in matchTemplatePreparedKernel_CCOFF_8U() argument
345 (image_sum.ptr(y + h)[x + w] - image_sum.ptr(y)[x + w]) - in matchTemplatePreparedKernel_CCOFF_8U()
346 (image_sum.ptr(y + h)[x] - image_sum.ptr(y)[x])); in matchTemplatePreparedKernel_CCOFF_8U()
352 …void matchTemplatePrepared_CCOFF_8U(int w, int h, const PtrStepSz<int> image_sum, int templ_sum, P… in matchTemplatePrepared_CCOFF_8U() argument
357 …Kernel_CCOFF_8U<<<grid, threads, 0, stream>>>(w, h, (float)templ_sum / (w * h), image_sum, result); in matchTemplatePrepared_CCOFF_8U()
540 const PtrStep<int> image_sum, in matchTemplatePreparedKernel_CCOFF_NORMED_8U() argument
551 (image_sum.ptr(y + h)[x + w] - image_sum.ptr(y)[x + w]) - in matchTemplatePreparedKernel_CCOFF_NORMED_8U()
552 (image_sum.ptr(y + h)[x] - image_sum.ptr(y)[x])); in matchTemplatePreparedKernel_CCOFF_NORMED_8U()
562 int w, int h, const PtrStepSz<int> image_sum, in matchTemplatePrepared_CCOFF_NORMED_8U() argument
576 image_sum, image_sqsum, result); in matchTemplatePrepared_CCOFF_NORMED_8U()
/external/opencv3/modules/cudaimgproc/src/
Dmatch_template.cpp70 …void matchTemplatePrepared_CCOFF_8U(int w, int h, const PtrStepSz<int> image_sum, int templ_sum, P…
101 int w, int h, const PtrStepSz<int> image_sum,