Home | History | Annotate | Download | only in src

Lines Matching refs:templ_sqsum

64         void matchTemplatePrepared_SQDIFF_8U(int w, int h, const PtrStepSz<double> image_sqsum, double templ_sqsum, PtrStepSzf result,
67 void matchTemplatePrepared_SQDIFF_NORMED_8U(int w, int h, const PtrStepSz<double> image_sqsum, double templ_sqsum, PtrStepSzf result,
103 int templ_sum, double templ_sqsum,
134 double templ_sqsum, PtrStepSzf result, int cn, cudaStream_t stream);
292 double templ_sqsum = cuda::sqrSum(templ.reshape(1))[0];
294 normalize_8U(templ.cols, templ.rows, image_sqsums_, templ_sqsum, result, image.channels(), StreamAccessor::getStream(stream));
362 double templ_sqsum = cuda::sqrSum(templ.reshape(1))[0];
367 matchTemplatePrepared_SQDIFF_8U(templ.cols, templ.rows, image_sqsums_, templ_sqsum, result, image.channels(), StreamAccessor::getStream(stream));
400 double templ_sqsum = cuda::sqrSum(templ.reshape(1))[0];
405 matchTemplatePrepared_SQDIFF_NORMED_8U(templ.cols, templ.rows, image_sqsums_, templ_sqsum, result, image.channels(), StreamAccessor::getStream(stream));
531 double templ_sqsum = cuda::sqrSum(templ)[0];
535 templ_sum, templ_sqsum, result, StreamAccessor::getStream(stream));
550 Scalar templ_sqsum = cuda::sqrSum(templ);
559 (int)templ_sum[0], templ_sqsum[0],
560 (int)templ_sum[1], templ_sqsum[1],
569 (int)templ_sum[0], templ_sqsum[0],
570 (int)templ_sum[1], templ_sqsum[1],
571 (int)templ_sum[2], templ_sqsum[2],
581 (int)templ_sum[0], templ_sqsum[0],
582 (int)templ_sum[1], templ_sqsum[1],
583 (int)templ_sum[2], templ_sqsum[2],
584 (int)templ_sum[3], templ_sqsum[3],