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: 638 times
Last updated: Oct 29 '12
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!