Fixed bug in checkRange - integer Mats were always in range

pull/13383/head
Andrey Kamaev 13 years ago
parent 6944c0dba4
commit ff9da914ec
  1. 4
      modules/core/src/mathfuncs.cpp

@ -1990,8 +1990,8 @@ bool checkRange(InputArray _src, bool quiet, Point* pt,
if( depth < CV_32F ) if( depth < CV_32F )
{ {
double m = 0, M = 0, badValue = 0; double m = 0, M = 0;
Point mp, MP, badPt(-1,-1); Point mp, MP;
minMaxLoc(src.reshape(1,0), &m, &M, &mp, &MP); minMaxLoc(src.reshape(1,0), &m, &M, &mp, &MP);
if( M >= maxVal ) if( M >= maxVal )
{ {

Loading…
Cancel
Save