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

  /external/opencv3/modules/cudaimgproc/perf/
perf_match_template.cpp 65 const cv::Size templ_size = GET_PARAM(1); local
70 cv::Mat templ(templ_size, CV_MAKE_TYPE(CV_8U, cn));
107 const cv::Size templ_size = GET_PARAM(1); local
112 cv::Mat templ(templ_size, CV_MAKE_TYPE(CV_32F, cn));
  /external/opencv3/modules/cudaarithm/perf/
perf_arithm.cpp 220 const int templ_size = GET_PARAM(1); local
224 const cv::Mat templ(templ_size, templ_size, CV_32FC1);
232 cv::cuda::GpuMat d_templ = cv::cuda::createContinuous(templ_size, templ_size, CV_32FC1);
  /external/opencv3/modules/cudaarithm/src/
arithm.cpp 412 void create(Size image_size, Size templ_size);
425 void ConvolutionImpl::create(Size image_size, Size templ_size)
427 result_size = Size(image_size.width - templ_size.width + 1,
428 image_size.height - templ_size.height + 1);
434 dft_size.width = 1 << int(ceil(std::log(block_size.width + templ_size.width - 1.) / std::log(2.)));
435 dft_size.height = 1 << int(ceil(std::log(block_size.height + templ_size.height - 1.) / std::log(2.)));
440 dft_size.width = getOptimalDFTSize(block_size.width + templ_size.width - 1);
442 dft_size.height = getOptimalDFTSize(block_size.height + templ_size.height - 1);
458 block_size.width = std::min(dft_size.width - templ_size.width + 1, result_size.width);
459 block_size.height = std::min(dft_size.height - templ_size.height + 1, result_size.height)
    [all...]
  /external/opencv3/modules/cudaimgproc/test/
test_match_template.cpp 64 cv::Size templ_size; local
72 templ_size = GET_PARAM(2);
83 cv::Mat templ = randomMat(templ_size, CV_MAKETYPE(CV_8U, cn));
121 cv::Size templ_size; local
131 templ_size = GET_PARAM(2);
142 cv::Mat templ = randomMat(templ_size, CV_MAKETYPE(CV_32F, cn));
  /external/opencv3/modules/imgproc/src/
templmatch.cpp 127 void create(Size image_size, Size templ_size);
130 void ConvolveBuf::create(Size image_size, Size templ_size)
132 result_size = Size(image_size.width - templ_size.width + 1,
133 image_size.height - templ_size.height + 1);
139 block_size.width = std::max( block_size.width, minBlockSize - templ_size.width + 1 );
141 block_size.height = cvRound(templ_size.height*blockScale);
142 block_size.height = std::max( block_size.height, minBlockSize - templ_size.height + 1 );
145 dft_size.width = std::max(getOptimalDFTSize(block_size.width + templ_size.width - 1), 2);
146 dft_size.height = getOptimalDFTSize(block_size.height + templ_size.height - 1);
151 block_size.width = dft_size.width - templ_size.width + 1
    [all...]
  /external/opencv3/samples/gpu/performance/
tests.cpp 41 for (int templ_size = 5; templ_size < 200; templ_size *= 5)
43 SUBTEST << src.cols << 'x' << src.rows << ", 32FC1" << ", templ " << templ_size << 'x' << templ_size << ", CCORR";
45 gen(templ, templ_size, templ_size, CV_32F, 0, 1);
  /external/opencv/cv/src/
cvtemplmatch.cpp 398 CvSize img_size = cvGetMatSize(img), templ_size = cvGetMatSize(templ); local
403 templ_size, result->data.ptr,

Completed in 294 milliseconds