1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

MSER: off-by-one bug

This commit is contained in:
will hunt
2016-08-06 12:24:16 +08:00
parent 5f30a0a076
commit c2e5418e51
+1 -1
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;