fixed vector out of range exception in nextImg

pull/4027/head
zenev 10 years ago
parent 354ed5c4d6
commit 5cb70d34d7
  1. 4
      apps/traincascade/imagestorage.cpp

@ -54,8 +54,10 @@ bool CvCascadeImageReader::NegReader::nextImg()
for( size_t i = 0; i < count; i++ )
{
src = imread( imgFilenames[last++], 0 );
if( src.empty() )
if( src.empty() ){
last %= count;
continue;
}
round += last / count;
round = round % (winSize.width * winSize.height);
last %= count;

Loading…
Cancel
Save