diff --git a/doc/py_tutorials/py_imgproc/py_template_matching/py_template_matching.markdown b/doc/py_tutorials/py_imgproc/py_template_matching/py_template_matching.markdown index 1557118ab6..3a59bf6b23 100644 --- a/doc/py_tutorials/py_imgproc/py_template_matching/py_template_matching.markdown +++ b/doc/py_tutorials/py_imgproc/py_template_matching/py_template_matching.markdown @@ -46,12 +46,12 @@ assert template is not None, "file could not be read, check with os.path.exists( w, h = template.shape[::-1] # All the 6 methods for comparison in a list -methods = ['cv.TM_CCOEFF', 'cv.TM_CCOEFF_NORMED', 'cv.TM_CCORR', - 'cv.TM_CCORR_NORMED', 'cv.TM_SQDIFF', 'cv.TM_SQDIFF_NORMED'] +methods = ['TM_CCOEFF', 'TM_CCOEFF_NORMED', 'TM_CCORR', + 'TM_CCORR_NORMED', 'TM_SQDIFF', 'TM_SQDIFF_NORMED'] for meth in methods: img = img2.copy() - method = eval(meth) + method = getattr(cv, meth) # Apply template Matching res = cv.matchTemplate(img,template,method)