Lines Matching refs:msers
127 vector<vector<Point> >* msers; member
217 wp.msers->push_back(vector<Point>()); in checkAndCapture()
218 vector<Point>& region = wp.msers->back(); in checkAndCapture()
345 std::vector<std::vector<Point> >& msers,
402 void pass( const Mat& img, vector<vector<Point> >& msers, vector<Rect>& bboxvec, in pass() argument
414 wp.msers = &msers; in pass()
896 vector<vector<Point> >& msers, in extractMSER_8uC3()
997 msers.push_back(vector<Point>()); in extractMSER_8uC3()
998 vector<Point>& mser = msers.back(); in extractMSER_8uC3()
1020 void MSER_Impl::detectRegions( InputArray _src, vector<vector<Point> >& msers, vector<Rect>& bboxes… in detectRegions() argument
1025 msers.clear(); in detectRegions()
1045 pass( src, msers, bboxes, size, level_size, 0 ); in detectRegions()
1048 pass( src, msers, bboxes, size, level_size, 255 ); in detectRegions()
1053 extractMSER_8uC3( src, msers, bboxes, params ); in detectRegions()
1060 vector<vector<Point> > msers; in detect() local
1063 detectRegions(_image, msers, bboxes); in detect()
1064 int i, ncomps = (int)msers.size(); in detect()
1071 RotatedRect rect = fitEllipse(Mat(msers[i])); in detect()