Changing Features2d parameters after construction
Is it possible to change the default parameters for a 2D features detection algorithm, after it was constructed?
Is it possible to change the default parameters for a 2D features detection algorithm, after it was constructed?
Asked: 2013-08-13 08:09:41 -0600
Seen: 205 times
Last updated: Aug 13 '13
OpenCV DescriptorMatcher matches
How to get good matches from the ORB feature detection algorithm?
How to reduce false positives for face detection
Record/Store constant refreshing coordinates points into notepad
Conversion between IplImage and MxArray
How to use the LshIndexParams?
Why does DescriptorMatcher::add takes vector of Mats?
No, its not, since those variables are protected and only accessible through the constructor. But if you use a pointer to the Detector, just use delete(Pointer_to_detector)) and then make a new Detector(...) (in case you are using c++)