SIFT and SURF feature extraction Implementation using MATLAB

╄→尐↘猪︶ㄣ 提交于 2019-12-06 04:18:59

问题


I am doing an ancient coins recognition system using matlab. What I have done so far is:

  1. convert to grayscale
  2. remove noise using Gaussian filter
  3. contrast enhancement
  4. edge detection using canny edge detector.

Now I want to extract feature for classification. Features I thought to select are roundness, area, colour, SIFT and SURF. My problem is how I can apply SIFT and SURF algorithms to my project. I couldn't find built-in functions for both.


回答1:


you can find a matlab implementation of SIFT features here: http://www.cs.ubc.ca/~lowe/keypoints/




回答2:


You can find SIFT as a C implementation with MATLAB bindings at: http://www.vlfeat.org/index.html




回答3:


For anyone else coming across this thread as I did, I noticed the implementation at http://www.vlfeat.org/index.html was far more than I required and also fairly hard to adjust to my code. The following link; http://robwhess.github.io/opensift/, has an implementation of just the SIFT algorithm accompanied with an example executable, with the source code available (unlike http://www.cs.ubc.ca/~lowe/keypoints/ which only has the sift binary executable).



来源:https://stackoverflow.com/questions/5550896/sift-and-surf-feature-extraction-implementation-using-matlab

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!