Skip to content

Latest commit

 

History

History

SurfAlgorithm

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 

SURF (Speeded-Up Robust Features) Algorithm

SURF algorithm is a patented local feature detector and descriptor used for tasks like Object Recognition, Image Registration, Image Classification and 3D Reconstruction. The main advantage of SURF is the fast computation of operators using box filters. Instead of Gaussian averaging the image, squares are used for approximation since the convolution with sqaure is much faster if the integral image is used.

SURF is composed of 2 steps

1. Feature Extraction

2. Feature Description

Procedure

  • SURF approximates the LoG with Box Filter. Below image shows this approximation. One big advantage of this approximation is that, convolution with box filter can be easily calculated with the help of integral images.

  • The above can be done parallel for different scales. SURF relies on determinant of Hessian matrix for both the scale and location.
  • For orientation assignment, SURF uses wavelet responses in horizontal and vertical direction for a neighbourhood of size 6s. Adequate guassian weights are also applied to it.
  • The dominant orientation is estimated by calculating the sum of all responses within a sliding orientation window of angle 60 degrees.

  • SURF also provides such a functionality called Upright-SURF or U-SURF.

  • For feature description, SURF uses Wavelet responses in horizontal and vertical direction.

  • A neighbourhood of size 20sX20s is taken around the keypoint where s is the size. It is divided into 4x4 subregions.

  • For each subregion, horizontal and vertical wavelet responses are taken and a vector is formed like this, V = (∑ dx, ∑ dy, ∑|dx|, ∑|dy|)

  • This when represented as a vector gives SURF feature descriptor with total 64 dimensions. Lower the dimension, higher the speed of computation and matching, but provide better distinctiveness of features.

Referenes