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

Default AGAST threshold is 40 (as authors recomandation)

This commit is contained in:
cbalint13
2015-04-29 23:54:16 +03:00
parent 0ec5561b4e
commit e2f74309f7
@@ -445,7 +445,7 @@ public:
THRESHOLD = 10000, NONMAX_SUPPRESSION = 10001,
};
CV_WRAP static Ptr<AgastFeatureDetector> create( int threshold=10,
CV_WRAP static Ptr<AgastFeatureDetector> create( int threshold=40,
bool nonmaxSuppression=true,
int type=AgastFeatureDetector::OAST_9_16 );