Reputation: 21
I am using opencv now. I found MSER only provide the operator()
function which return vector<vector<Point> >
, How could I get the component tree structure of MSER region?
Upvotes: 0
Views: 591
Reputation: 21
I found I could use the following API void ERFilter::run(InputArray image, std::vector& regions) provied by opencv 3.0 alpha to get component tree
Upvotes: 1