From bbb785e43c6effb7ae948c2c88107f42a8b57d86 Mon Sep 17 00:00:00 2001 From: saskatchewancatch Date: Tue, 25 Apr 2017 21:54:37 -0600 Subject: [PATCH] Issue 8647: Updated doc for cv::matchTemplate to reflect current support for methods when mast template is supplied. --- modules/imgproc/include/opencv2/imgproc.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/imgproc/include/opencv2/imgproc.hpp b/modules/imgproc/include/opencv2/imgproc.hpp index fea89a886a..4df93a0cef 100644 --- a/modules/imgproc/include/opencv2/imgproc.hpp +++ b/modules/imgproc/include/opencv2/imgproc.hpp @@ -3687,7 +3687,7 @@ data type. is \f$W \times H\f$ and templ is \f$w \times h\f$ , then result is \f$(W-w+1) \times (H-h+1)\f$ . @param method Parameter specifying the comparison method, see cv::TemplateMatchModes @param mask Mask of searched template. It must have the same datatype and size with templ. It is -not set by default. +not set by default. Currently, only the TM_SQDIFF and TM_CCORR_NORMED methods are supported. */ CV_EXPORTS_W void matchTemplate( InputArray image, InputArray templ, OutputArray result, int method, InputArray mask = noArray() );