/external/opencv3/modules/imgproc/perf/opencl/ |
D | perf_matchTemplate.cpp | 34 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/ |
D | ElemApplyImport.java | 84 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/ |
D | py_template_matching.markdown | 9 - 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/ |
D | test_match_template.cpp | 120 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/ |
D | perf_matchTemplate.cpp | 39 TEST_CYCLE() matchTemplate(img, tmpl, result, method); 73 TEST_CYCLE() matchTemplate(img, tmpl, result, method);
|
/external/opencv3/modules/cudaimgproc/perf/ |
D | perf_match_template.cpp | 89 TEST_CYCLE() cv::matchTemplate(image, templ, dst, method); 131 TEST_CYCLE() cv::matchTemplate(image, templ, dst, method);
|
/external/opencv3/modules/cudaimgproc/test/ |
D | test_match_template.cpp | 91 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/ |
D | mask_tmpl.cpp | 54 matchTemplate(img, tmpl, res, method, mask); in main()
|
/external/opencv3/doc/tutorials/imgproc/histograms/template_matching/ |
D | template_matching.markdown | 9 - 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/ |
D | MatchTemplate_Demo.cpp | 67 matchTemplate( img, templ, result, match_method ); in MatchingMethod()
|
/external/opencv3/modules/imgproc/src/ |
D | templmatch.cpp | 318 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/ |
D | mouse_and_match.py | 33 result = cv2.matchTemplate(gray,patch,cv2.TM_CCOEFF_NORMED)
|
/external/opencv3/modules/ts/src/ |
D | ocl_test.cpp | 251 matchTemplate(m1.getMat(), m2.getMat(), diff, CV_TM_CCORR_NORMED); in checkSimilarity()
|
D | cuda_test.cpp | 360 matchTemplate(getMat(m1), getMat(m2), diff, TM_CCORR_NORMED); in checkSimilarity()
|
/external/opencv3/samples/gpu/performance/ |
D | tests.cpp | 32 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/ |
D | test_templmatch.cpp | 143 …cv::matchTemplate(cv::cvarrToMat(test_array[INPUT][0]), cv::cvarrToMat(test_array[INPUT][1]), _out… in run_func()
|
/external/opencv3/modules/imgproc/include/opencv2/ |
D | imgproc.hpp | 3353 CV_EXPORTS_W void matchTemplate( InputArray image, InputArray templ,
|
/external/opencv3/modules/imgproc/misc/java/test/ |
D | ImgprocTest.java | 1379 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/ |
D | imgproc+Imgproc.java | 2096 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
|
D | imgproc.cpp | 4383 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()
|