Commit 0ad9edfb authored by Maria Dimashova's avatar Maria Dimashova

removed unnecessary fix

parent edff6741
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment