Ask Your Question
0

Increasing the number of detected features in SIFT will increase precision?

asked 2016-07-19 22:23:27 -0600

lovaj gravatar image

I'm implementing an content-based image retrieval application which involves the Bag of Features model. I'm using cv::SIFT as feature detector.

Anyway, the application performances are not great and I'm trying to improve them from the first step algorithm, which is detecting features.

Reading cv::SIFT::create() documentation I've seen 3 parameters that caught my attention:

  • nfeatures – The number of best features to retain. The features are ranked by their scores (measured in SIFT algorithm as the local contrast)
  • contrastThreshold – The contrast threshold used to filter out weak features in semi-uniform (low-contrast) regions. The larger the threshold, the less features are produced by the detector.
  • edgeThreshold – The threshold used to filter out edge-like features. Note that the its meaning is different from the contrastThreshold, i.e. the larger the edgeThreshold, the less features are filtered out (more features are retained).

This means that increasing the first and third parameters, while decreasing the second, should improve the algorithm precision (with lower time-performances)?

I'm wondering this especially for the first parameters, where for example if we set nfeatures=2000, it's going to detect exactly 2000 features, no matter if they are "interesting" or not. This means that is it going to detect "uninteresting" (so bad) keypoints?

edit retag flag offensive close merge delete

1 answer

Sort by » oldest newest most voted
1

answered 2016-07-20 04:48:22 -0600

updated 2016-07-20 04:49:27 -0600

Well, it first looks for all possible keypoints, and then takes the nfeatures best (highest response) of them. However if the number of possible keypoints is only 1500, then giving 2000 to nfeatures will not result in 2000 but only in 1500 keypoints. About the bad keypoints, what is bad there? I mean you have weak and stronger keypoints, but none of them are bad, they can all introduce extra knowledge to your system. However the weaker ones will most likely be found less frequently in other views of the same object.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2016-07-19 22:23:27 -0600

Seen: 995 times

Last updated: Jul 19 '16