Real time tracking using SURF algorithm on CPU

Опубликовано: 02 Август 2026
на канале: Supermalf
29,797
40

SURF (Speeded Up Robust Features) is a robust local feature detector, first presented by Herbert Bay et al. in 2006, that can be used in computer vision tasks like object recognition or 3D reconstruction. It is partly inspired by the SIFT descriptor. The standard version of SURF is several times faster than SIFT and claimed by its authors to be more robust against different image transformations than SIFT. SURF is based on sums of 2D Haar wavelet responses and makes an efficient use of integral images.
It uses an integer approximation to the determinant of Hessian blob detector, which can be computed extremely quickly with an integral image (3 integer operations). For features, it uses the sum of the Haar wavelet response around the point of interest. Again, these can be computed with the aid of the integral image.
An application of the algorithm is patented in the US.

This is a simple demo of the SURF algorithm using any image as a marker. This uses our CUDA implementation of the algorithm using a live webcam video as input. We compare this version with the OpenSurf CPU implementation.