HomeSort by relevance Sort by last modified time
    Searched refs:templ_sum (Results 1 - 3 of 3) sorted by null

  /external/opencv3/modules/cudaimgproc/src/
match_template.cpp 70 void matchTemplatePrepared_CCOFF_8U(int w, int h, const PtrStepSz<int> image_sum, int templ_sum, PtrStepSzf result, cudaStream_t stream);
103 int templ_sum, double templ_sqsum,
445 int templ_sum = (int) cuda::sum(templ)[0];
447 matchTemplatePrepared_CCOFF_8U(templ.cols, templ.rows, image_sums_[0], templ_sum, result, StreamAccessor::getStream(stream));
457 Scalar templ_sum = cuda::sum(templ);
464 (int) templ_sum[0], (int) templ_sum[1],
470 (int) templ_sum[0], (int) templ_sum[1], (int) templ_sum[2]
    [all...]
  /external/opencv3/modules/imgproc/src/
templmatch.cpp 457 float templ_sum = (float)templMean[0]; local
459 k.args(ocl::KernelArg::ReadOnlyNoSize(image_sums), ocl::KernelArg::ReadWrite(result), templ.rows, templ.cols, templ_sum); local
463 Vec4f templ_sum = Vec4f::all(0); local
464 templ_sum = (Vec4f)mean(templ);
466 k.args(ocl::KernelArg::ReadOnlyNoSize(image_sums), ocl::KernelArg::ReadWrite(result), templ.rows, templ.cols, templ_sum); } local
495 float templ_sum = (float)sum(templ)[0]; local
500 templ_sqsum -= scale * templ_sum * templ_sum;
501 templ_sum *= scale;
510 ocl::KernelArg::ReadWrite(result), templ.rows, templ.cols, scale, templ_sum, templ_sqsum) local
514 Vec4f templ_sum = Vec4f::all(0), templ_sqsum = Vec4f::all(0); local
534 templ_sum, templ_sqsum_sum); } local
    [all...]
  /external/opencv3/modules/cudaimgproc/src/cuda/
match_template.cu 352 void matchTemplatePrepared_CCOFF_8U(int w, int h, const PtrStepSz<int> image_sum, int templ_sum, PtrStepSzf result, cudaStream_t stream)
357 matchTemplatePreparedKernel_CCOFF_8U<<<grid, threads, 0, stream>>>(w, h, (float)templ_sum / (w * h), image_sum, result);
564 int templ_sum, double templ_sqsum,
571 float templ_sum_scale = templ_sum * weight;
572 float templ_sqsum_scale = templ_sqsum - weight * templ_sum * templ_sum;
    [all...]

Completed in 97 milliseconds