Latest YouTube Video

Monday, July 27, 2015

[opencv] Expose FAST feature threshold in iterface (#4517)

Transferred from http://ift.tt/1VIydkr || Mark Stevens on 2013-02-28 13:10 || Priority: Normal || Affected: None || Category: features2d || Tracker: Feature || Difficulty: None || PR: || Platform: None / None Expose FAST feature threshold in iterface in ORB.cpp line 729: // Detect FAST features, 20 is a good threshold FastFeatureDetector fd(20, true); The threshold of 20 is dependent upon dynamic range of the input imagery. Parameter could be exposed in the ORB constructor enabling user to set it based on their dynamic range. History Alexander Shishkov on 2013-02-28 13:24 - Category set to features2d Mark Stevens on 2013-02-28 14:17 cv::gpu::ORB_GPU has the following function: inline void setFastParams(int threshold, bool nonmaxSupression = true) { fastDetector_.threshold = threshold; fastDetector_.nonmaxSupression = nonmaxSupression; } which would provide required functionality. —Reply to this email directly or view it on GitHub.

Source: Gmail -> IFTTT-> Blogger

No comments: