Home
last modified time | relevance | path

Searched refs:matchTemplate (Results 1 – 20 of 20) sorted by relevance

/external/opencv3/modules/imgproc/perf/opencl/
Dperf_matchTemplate.cpp34 OCL_TEST_CYCLE() matchTemplate(img, tmpl, result, method);
50 OCL_PERF_TEST_P(CV_TM_CCORRFixture, matchTemplate,
64 OCL_TEST_CYCLE() cv::matchTemplate(src, templ, dst, CV_TM_CCORR);
71 OCL_PERF_TEST_P(CV_TM_CCORR_NORMEDFixture, matchTemplate,
82 OCL_TEST_CYCLE() cv::matchTemplate(src, templ, dst, CV_TM_CCORR_NORMED);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DElemApplyImport.java84 ElemTemplate matchTemplate = transformer.getMatchedTemplate(); in execute() local
85 transformer.applyTemplateToNode(this, matchTemplate, sourceNode); in execute()
/external/opencv3/doc/py_tutorials/py_imgproc/py_template_matching/
Dpy_template_matching.markdown9 - You will see these functions : **cv2.matchTemplate()**, **cv2.minMaxLoc()**
15 image. OpenCV comes with a function **cv2.matchTemplate()** for this purpose. It simply slides the
55 res = cv2.matchTemplate(img,template,method)
120 res = cv2.matchTemplate(img_gray,template,cv2.TM_CCOEFF_NORMED)
/external/opencv3/modules/imgproc/test/ocl/
Dtest_match_template.cpp120 OCL_OFF(cv::matchTemplate(image_roi, templ_roi, result_roi, method)); in OCL_TEST_P()
121 OCL_ON(cv::matchTemplate(uimage_roi, utempl_roi, uresult_roi, method)); in OCL_TEST_P()
/external/opencv3/modules/imgproc/perf/
Dperf_matchTemplate.cpp39 TEST_CYCLE() matchTemplate(img, tmpl, result, method);
73 TEST_CYCLE() matchTemplate(img, tmpl, result, method);
/external/opencv3/modules/cudaimgproc/perf/
Dperf_match_template.cpp89 TEST_CYCLE() cv::matchTemplate(image, templ, dst, method);
131 TEST_CYCLE() cv::matchTemplate(image, templ, dst, method);
/external/opencv3/modules/cudaimgproc/test/
Dtest_match_template.cpp91 cv::matchTemplate(image, templ, dst_gold, method); in CUDA_TEST_P()
150 cv::matchTemplate(image, templ, dst_gold, method); in CUDA_TEST_P()
257 cv::matchTemplate(image, pattern, dstGold, cv::TM_CCOEFF_NORMED); in CUDA_TEST_P()
/external/opencv3/samples/cpp/
Dmask_tmpl.cpp54 matchTemplate(img, tmpl, res, method, mask); in main()
/external/opencv3/doc/tutorials/imgproc/histograms/template_matching/
Dtemplate_matching.markdown9 - Use the OpenCV function @ref cv::matchTemplate to search for matches between an image patch and
56 Good question. OpenCV implements Template matching in the function @ref cv::matchTemplate . The
92 - Perform a template matching procedure by using the OpenCV function @ref cv::matchTemplate
153 matchTemplate( img, templ, result, match_method );
/external/opencv3/samples/cpp/tutorial_code/Histograms_Matching/
DMatchTemplate_Demo.cpp67 matchTemplate( img, templ, result, match_method ); in MatchingMethod()
/external/opencv3/modules/imgproc/src/
Dtemplmatch.cpp318 matchTemplate(_image, _templ, _result, CV_TM_CCORR); in matchTemplate_CCORR_NORMED()
376 matchTemplate(_image, _templ, _result, CV_TM_CCORR); in matchTemplate_SQDIFF()
407 matchTemplate(_image, _templ, _result, CV_TM_CCORR); in matchTemplate_SQDIFF_NORMED()
439 matchTemplate(_image, _templ, _result, CV_TM_CCORR); in matchTemplate_CCOEFF()
474 matchTemplate(_image, _templ, _result, CV_TM_CCORR); in matchTemplate_CCOEFF_NORMED()
900 void cv::matchTemplate( InputArray _img, InputArray _templ, OutputArray _result, int method, InputA… in matchTemplate() function in cv
936 if (tegra::useTegra() && tegra::matchTemplate(img, templ, result, method)) in matchTemplate()
1094 matchTemplate(img, templ, result, method); in cvMatchTemplate()
/external/opencv3/samples/python2/
Dmouse_and_match.py33 result = cv2.matchTemplate(gray,patch,cv2.TM_CCOEFF_NORMED)
/external/opencv3/modules/ts/src/
Docl_test.cpp251 matchTemplate(m1.getMat(), m2.getMat(), diff, CV_TM_CCORR_NORMED); in checkSimilarity()
Dcuda_test.cpp360 matchTemplate(getMat(m1), getMat(m2), diff, TM_CCORR_NORMED); in checkSimilarity()
/external/opencv3/samples/gpu/performance/
Dtests.cpp32 TEST(matchTemplate) in TEST() argument
46 matchTemplate(src, templ, dst, TM_CCORR); in TEST()
49 matchTemplate(src, templ, dst, TM_CCORR); in TEST()
/external/opencv3/modules/imgproc/test/
Dtest_templmatch.cpp143 …cv::matchTemplate(cv::cvarrToMat(test_array[INPUT][0]), cv::cvarrToMat(test_array[INPUT][1]), _out… in run_func()
/external/opencv3/modules/imgproc/include/opencv2/
Dimgproc.hpp3353 CV_EXPORTS_W void matchTemplate( InputArray image, InputArray templ,
/external/opencv3/modules/imgproc/misc/java/test/
DImgprocTest.java1379 Imgproc.matchTemplate(image, templ, dst, Imgproc.TM_CCORR); in testMatchTemplate()
1384 Imgproc.matchTemplate(gray255, gray0, dst, Imgproc.TM_CCORR); in testMatchTemplate()
/external/opencv3/modules/java/src/
Dimgproc+Imgproc.java2096 public static void matchTemplate(Mat image, Mat templ, Mat result, int method, Mat mask) in matchTemplate() method in Imgproc
2105 public static void matchTemplate(Mat image, Mat templ, Mat result, int method) in matchTemplate() method in Imgproc
Dimgproc.cpp4383 cv::matchTemplate( image, templ, result, (int)method, mask ); in Java_org_opencv_imgproc_Imgproc_matchTemplate_10()
4406 cv::matchTemplate( image, templ, result, (int)method ); in Java_org_opencv_imgproc_Imgproc_matchTemplate_11()