Wrong ORB constructor in documentation (Bug #1618)
Description
In the documentation for class ORB (http://opencv.itseez.com/trunk/modules/features2d/doc/feature_detection_and_description.html#orb), the constructor is as follows:
1// constructor that initializes all the algorithm parameters
2ORB( const CommonParams detector_params );
But in header (features2d.hpp, rev 7020), the constructor has 2 parametres:
1/** Constructor
2 * @param n_features the number of desired features
3 * @param detector_params parameters to use
4 */
5ORB(size_t n_features = 500, const CommonParams & detector_params = CommonParams());
Associated revisions
fixed #1618
History
Updated by Andrey Kamaev about 13 years ago
- Description changed from In the documentation for class ORB ([[http://opencv.itseez.com/trunk/modules/... to In the documentation for class ORB (http://opencv.itseez.com/trunk/modules/fe... More
Updated by Alexander Shishkov about 13 years ago
Thank you for the report!
Problem was fixed, see http://opencv.itseez.com/trunk/modules/features2d/doc/feature_detection_and_description.html#orb
- Status changed from Open to Done
- Target version set to 2.4.0
- Assignee set to Alexander Shishkov