#include <features2d.hpp>
Public Member Functions | |
CV_WRAP_AS (detect) void operator()(const Mat &image | |
the operator that extracts the MSERs from the image or the specific part of it | |
CV_WRAP | MSER (int _delta, int _min_area, int _max_area, double _max_variation, double _min_diversity, int _max_evolution, double _area_threshold, double _min_margin, int _edge_blur_size) |
the full constructor | |
CV_WRAP | MSER () |
the default constructor | |
Public Attributes | |
CV_OUT vector< vector< Point > > const Mat &mask | const |
CV_OUT vector< vector< Point > > & | msers |
Maximal Stable Extremal Regions class.
The class implements MSER algorithm introduced by J. Matas. Unlike SIFT, SURF and many other detectors in OpenCV, this is salient region detector, not the salient point detector.
It returns the regions, each of those is encoded as a contour.
CV_WRAP cv::MSER::MSER | ( | ) |
the default constructor
CV_WRAP cv::MSER::MSER | ( | int | _delta, | |
int | _min_area, | |||
int | _max_area, | |||
double | _max_variation, | |||
double | _min_diversity, | |||
int | _max_evolution, | |||
double | _area_threshold, | |||
double | _min_margin, | |||
int | _edge_blur_size | |||
) |
the full constructor
cv::MSER::CV_WRAP_AS | ( | detect | ) | const |
the operator that extracts the MSERs from the image or the specific part of it
CV_OUT vector<vector<Point> > const Mat& mask cv::MSER::const |
CV_OUT vector<vector<Point> >& cv::MSER::msers |