diff --git a/modules/features2d/include/opencv2/features2d/features2d.hpp b/modules/features2d/include/opencv2/features2d/features2d.hpp index 941c88f230c98ecd79a353307ea76971b8dd4aa4..0e018102aacf8d428d5677854a7aae7e31c768a8 100644 --- a/modules/features2d/include/opencv2/features2d/features2d.hpp +++ b/modules/features2d/include/opencv2/features2d/features2d.hpp @@ -324,13 +324,13 @@ class CV_EXPORTS_W MSER : public FeatureDetector { public: //! the full constructor - explicit MSER( int _delta=5, int _min_area=60, int _max_area=14400, + CV_WRAP explicit MSER( int _delta=5, int _min_area=60, int _max_area=14400, double _max_variation=0.25, double _min_diversity=.2, int _max_evolution=200, double _area_threshold=1.01, double _min_margin=0.003, int _edge_blur_size=5 ); //! the operator that extracts the MSERs from the image or the specific part of it - CV_WRAP_AS(detect) void operator()( const Mat& image, vector >& msers, + CV_WRAP_AS(detect) void operator()( const Mat& image, CV_OUT vector >& msers, const Mat& mask=Mat() ) const; AlgorithmInfo* info() const;