Ask Your Question
1

Which feature descriptor should I use with Harris corner detector?

asked 2012-10-19 17:45:20 -0600

valgussev gravatar image

updated 2012-10-22 15:05:39 -0600

I'm new to OpenCV, having a question: I'm interesting in this tutorial - Features2D + Homography to find a known object, as I can see it uses SurfFeatureDetector and then SurfDescriptorExtractor. If I will use the Harris corner detector which DescriptorExtractor I should use?

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
2

answered 2012-10-21 10:01:28 -0600

alexcv gravatar image

Hi,

A classical combination is Harris detector+SIFT descriptor, you can also consider OpponentSIFT is color information is an important/selective criteria.

Regards

edit flag offensive delete link more

Comments

Thank you! So if i'll just find corners with Harris detector and then will use SiftDescriptorExtractor it's gonna work? Are "corners" and "features" in this case the same thing?

valgussev gravatar imagevalgussev ( 2012-10-21 11:23:54 -0600 )edit

Hi, actually not, Regarding the detector aspect, Harris and SIFT differ from the threshold value computation (hessian matrix vs second moment criteria). Regarding the SIFT description : descriptor is generally extracted from the same scale as its SIFT keypoint scale. It takes into account magnitude and orientation of local information computed on a grid of small patches around the keypoint. You should take a look at Lowe's paper (1999) <http://dx.doi.org/10.1109%2FICCV.1999.790410> and also compare to other descriptors GLOH, etc.) .

Regards

alexcv gravatar imagealexcv ( 2012-10-21 12:04:53 -0600 )edit

As I can see in this tutorial http://morf.lv/modules.php?name=tutorials&lasit=2#.UIRKJLQWFSU SurfDescriptorExtractor has just information about coordinates of the keypoints and then by itself calculate the descriptors. After the Harris corner detector I will have the same coordinates of the corners, so basically it should be the same. Am I wrong?

valgussev gravatar imagevalgussev ( 2012-10-21 14:25:59 -0600 )edit

Question Tools

Stats

Asked: 2012-10-19 17:45:20 -0600

Seen: 3,194 times

Last updated: Oct 22 '12