How to use Mikolajczyk's evaluation framework for feature detectors/descriptors?
Asked Answered
O

2

5

I'm trying the assess the correctness of my SURF descriptor implementation with the de facto standard framework by Mikolajczyk et. al. I'm using OpenCV to detect and describe SURF features, and use the same feature positions as input to my descriptor implementation.

To evaluate descriptor performance, the framework requires to evaluate detector repeatability first. Unfortunately, the repeatability test expects a list of feature positions along with ellipse parameters defining the size and orientation of an image region around each feature. However, OpenCV's SURF detector only provides feature position, scale and orientation.

The related paper proposes to compute those ellipse parameters iteratively from the eigenvalues of the second moment matrix. Is this the only way? As far as I can see, this would require some fiddling with OpenCV. Is there no way to compute those ellipse parameters afterwards (e.g. in Matlab) from the feature list and the input image?

Has anyone ever worked with this framework and could assist me with some insights or pointers?

Outnumber answered 8/5, 2012 at 19:35 Comment(0)
B
6

You can use the file evaluation.cpp from OpenCV. Is in the directory OpenCV/modules/features2d/src. In this file you could use the class "EllipticKeyPoint", this class has one function to convert "KeyPoint" to "ElipticKeyPoint"

Bootjack answered 26/11, 2012 at 10:29 Comment(0)
I
2

Honestly I never worked with this framework., but I think you should see this paper about a performance evaluation of local descriptors.

Injurious answered 8/5, 2012 at 19:51 Comment(1)
Thanks. I'm aware of this paper, but unfortunately it doesn't give anymore details on how to obtain the ellipse parameters.Outnumber

© 2022 - 2024 — McMap. All rights reserved.