Searched refs:ccorr (Results 1 - 7 of 7) sorted by relevance

/external/opencv3/modules/imgproc/test/
H A Dtest_templmatch.cpp196 CvScalar ccorr(0);
209 ccorr.val[0] += a[l]*b[l];
219 ccorr.val[0] += a[l]*b[l];
220 ccorr.val[1] += a[l+1]*b[l+1];
221 ccorr.val[2] += a[l+2]*b[l+2];
241 ccorr.val[0] += a[l]*b[l];
251 ccorr.val[0] += a[l]*b[l];
252 ccorr.val[1] += a[l+1]*b[l+1];
253 ccorr.val[2] += a[l+2]*b[l+2];
268 value = ccorr
[all...]
/external/opencv3/modules/core/test/ocl/
H A Dtest_dft.cpp132 bool ccorr, useRoi; local
140 ccorr = GET_PARAM(0);
169 OCL_OFF(cv::mulSpectrums(src1_roi, src2_roi, dst_roi, 0, ccorr));
170 OCL_ON(cv::mulSpectrums(usrc1_roi, usrc2_roi, udst_roi, 0, ccorr));
/external/opencv3/modules/cudaarithm/perf/
H A Dperf_arithm.cpp221 const bool ccorr = GET_PARAM(2); local
239 TEST_CYCLE() convolution->convolve(d_image, d_templ, dst, ccorr);
245 if (ccorr)
/external/opencv3/modules/cudaarithm/test/
H A Dtest_arithm.cpp319 void convolveDFT(const cv::Mat& A, const cv::Mat& B, cv::Mat& C, bool ccorr = false)
346 cv::mulSpectrums(tempA, tempB, tempA, 0, ccorr);
367 bool ccorr; local
374 ccorr = GET_PARAM(3);
388 conv->convolve(loadMat(src), loadMat(kernel), dst, ccorr); local
391 convolveDFT(src, kernel, dst_gold, ccorr);
/external/opencv3/modules/cudaimgproc/src/cuda/
H A Dmatch_template.cu231 float ccorr = result.ptr(y)[x];
232 result.ptr(y)[x] = image_sqsum_ - 2.f * ccorr + templ_sqsum;
301 float ccorr = result.ptr(y)[x];
302 result.ptr(y)[x] = normAcc_SQDIFF(image_sqsum_ - 2.f * ccorr + templ_sqsum,
347 float ccorr = result.ptr(y)[x];
348 result.ptr(y)[x] = ccorr - image_sum_ * templ_sum_scale;
383 float ccorr = result.ptr(y)[x];
384 result.ptr(y)[x] = ccorr - image_sum_r_ * templ_sum_scale_r
434 float ccorr = result.ptr(y)[x];
435 result.ptr(y)[x] = ccorr
[all...]
/external/opencv3/modules/cudaarithm/src/
H A Darithm.cpp409 void convolve(InputArray image, InputArray templ, OutputArray result, bool ccorr = false, Stream& stream = Stream::Null());
471 void ConvolutionImpl::convolve(InputArray _image, InputArray _templ, OutputArray _result, bool ccorr, Stream& _stream)
513 1.f / dft_size.area(), ccorr, _stream);
/external/opencv3/modules/cudaarithm/include/opencv2/
H A Dcudaarithm.hpp824 @param ccorr Flags to evaluate cross-correlation instead of convolution.
827 virtual void convolve(InputArray image, InputArray templ, OutputArray result, bool ccorr = false, Stream& stream = Stream::Null()) = 0;

Completed in 186 milliseconds