From 7e2bdb590f781de8c2fb6c2109641e81fae4146b Mon Sep 17 00:00:00 2001 From: Elena Gvozdeva Date: Fri, 17 Jan 2014 16:26:11 +0400 Subject: [PATCH] fixed --- modules/imgproc/src/templmatch.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/imgproc/src/templmatch.cpp b/modules/imgproc/src/templmatch.cpp index bb3423b..aaaa833 100644 --- a/modules/imgproc/src/templmatch.cpp +++ b/modules/imgproc/src/templmatch.cpp @@ -571,7 +571,9 @@ void cv::matchTemplate( InputArray _img, InputArray _templ, OutputArray _result, bool swapNotNeed = (_img.size().height >= _templ.size().height && _img.size().width >= _templ.size().width); if (!swapNotNeed) + { CV_Assert(_img.size().height <= _templ.size().height && _img.size().width <= _templ.size().width); + } bool use_opencl = ocl::useOpenCL() && _result.isUMat(); if ( use_opencl && (swapNotNeed ? ocl_matchTemplate(_img,_templ,_result,method) : ocl_matchTemplate(_templ,_img,_result,method))) -- 2.7.4