This commit is contained in:
Vadim Pisarevsky 2013-01-09 17:53:19 +04:00
parent 47df8f4c2a
commit e383d39598

View File

@ -346,7 +346,10 @@ void cv::matchTemplate( InputArray _img, InputArray _templ, OutputArray _result,
}
if( numType == 2 )
{
num = wndSum2 - 2*num + templSum2;
num = MAX(num, 0.);
}
}
if( isNormed )