diff --git a/modules/features2d/src/surf.cpp b/modules/features2d/src/surf.cpp index 87fed9cb65..e36a86fd60 100644 --- a/modules/features2d/src/surf.cpp +++ b/modules/features2d/src/surf.cpp @@ -204,10 +204,6 @@ icvInterpolateKeypoint( float N9[3][9], int dx, int dy, int ds, CvSURFPoint *poi point->pt.x += x[0]*dx; point->pt.y += x[1]*dy; point->size = cvRound( point->size + x[2]*ds ); - - // TBD quick fix to be reviewed - if(x[2]*ds/point->size <= 10) - point->size = cvRound( point->size + x[2]*ds ); } } return solve_ok;