How can I normaliza MSER regions after they are fitted to ellipses?
How can I normaliza MSER regions after they are fitted to ellipses?
For the descriptor extraction you will need a vector<cv::Keypoint>
as input.
You can set a cv::KeyPoint
s size
and angle
by using the ellipse's RotatedRect
's width, height and angle. This will define the region used to compute your descriptor.
I haven't tried this myself, but I think this should work.
Asked: 2012-10-29 02:47:18 -0600
Seen: 619 times
Last updated: Oct 29 '12
How to draw irregular outline of MSER region?
How do I draw irregular contours of MSER regions
MSER Sample in OpenCV 2.4.2 on Visual Studio 2012
MSER operator() is different from FeatureDetector::detect() function?
Why the function normalize(cvnormalize) can not be fund in the newest documents?
What do you mean by 'normalize'?
In order to build affine invariant feature descriptors in MESR regions, one must normalize the MSER regions. for details see the subsection: 3.1.2 Region Normalization in the paper of "A Performance Evaluation of Local Descriptors." IEEE TRANSACTIONS ON PATTERN ANALYSIS AND MACHINE INTELLIGENCE, VOL. 27, NO. 10, OCTOBER 2005 Thanks!