MSER: off-by-one bug

This commit is contained in:
will hunt 2016-08-06 12:24:16 +08:00
parent 5f30a0a076
commit c2e5418e51

View File

@ -390,7 +390,7 @@ public:
int step = cols;
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++ )
{
pptr[j].val = 0;