MSER: off-by-one bug

pull/7055/head
will hunt 9 years ago
parent 5f30a0a076
commit c2e5418e51
  1. 2
      modules/features2d/src/mser.cpp

@ -390,7 +390,7 @@ public:
int step = cols; int step = cols;
for( i = 1; i < rows-1; i++ ) for( i = 1; i < rows-1; i++ )
{ {
Pixel* pptr = &pixbuf[i*step + 1]; Pixel* pptr = &pixbuf[i*step];
for( j = 1; j < cols-1; j++ ) for( j = 1; j < cols-1; j++ )
{ {
pptr[j].val = 0; pptr[j].val = 0;

Loading…
Cancel
Save