It's like SIFT, but faster because it uses the Integral images to speed up image operations.

Any box region sum can be calculated in constant time using:
Sum=D−B−C+A

- Gaussian vs. Box Filter
Left: Gaussian Filter |
|
Right: Box Filter (Used in SURF) |
|

Pyramid/Scale Space: |
|
Octaves and Filter Sizes: |
|

Left: Descriptor Window and Subregions |
|
Gaussian Weighting |
|
Gradient Computation using Haar Wavelets |
|
Orientation Assignment |
|
Final SURF Descriptor |
|
A square window around a keypoint is taken
↓
It’s divided into 4×4 subregions
↓
Haar filters compute dx and dy gradients
↓
Gaussian weights reduce edge effects
↓
Gradients are summed for each block
↓
A 64-element vector is produced
Feature | SIFT (Scale-Invariant Feature Transform) | SURF (Speeded Up Robust Features) | KAZE (Nonlinear Scale Space) |
Scale Space | Gaussian pyramid (linear scale space) | Gaussian pyramid (linear scale space) | Nonlinear diffusion (preserves edges and boundaries) |
Detector | Difference of Gaussian (DoG) | Hessian matrix (approximated by box filters) | Determinant of Hessian matrix in nonlinear space |
Descriptor | Gradient orientation histograms | Haar wavelet responses | First-order image derivatives |
Rotation Invariance | Yes | Yes | Yes |
Illumination Invariance | Normalized gradient magnitude | Normalized Haar responses | Normalized first-order derivatives |
Computation Speed | Slower | Faster than SIFT | Slower (due to nonlinear PDE solving) |
Robustness | Good for scale and rotation | Good, faster alternative to SIFT | Better at preserving edge structures and boundaries |
Descriptor Dimension | 128 | 64 | 64 |
Key Innovation | Scale-space extrema + gradient histograms | Integral image + box filters for speed | Nonlinear scale space via anisotropic diffusion |
'Autonomous Vehicle > Video Geometry' 카테고리의 다른 글
FAST (Features from Accelerated Segment Test) (0) | 2025.04.03 |
---|---|
KAZE (0) | 2025.04.03 |
SIFT (Scale-Invariant Feature Transform) (0) | 2025.04.03 |
Homography (0) | 2024.07.25 |
Camera Calibration (0) | 2024.07.23 |