1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 07:43:03 +04:00

fixed angles of SURF detector

This commit is contained in:
Maria Dimashova
2012-07-02 12:32:14 +00:00
parent 565a8dc30d
commit 9cd0c9033f
+1 -1
View File
@@ -667,7 +667,7 @@ struct SURFInvoker
besty = sumy;
}
}
descriptor_dir = fastAtan2( besty, bestx );
descriptor_dir = fastAtan2( -besty, bestx );
}
kp.angle = descriptor_dir;
if( !descriptors || !descriptors->data )