Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SIFT and SURF feature extraction Implementation using MATLAB

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.

like image 750
Nadeeshani Jayathilake Avatar asked Jan 20 '23 02:01

Nadeeshani Jayathilake


1 Answers

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

like image 179
bjoernz Avatar answered Jan 22 '23 15:01

bjoernz