sift-features

Implementation of SIFT image features, compatible with OpenCV

1 unstable release

0.1.0 Sep 10, 2024

#200 in Science

Download history 119/week @ 2024-09-08 29/week @ 2024-09-15 10/week @ 2024-09-22 31/week @ 2024-09-29 6/week @ 2024-10-06

80 downloads per month

MIT license

1MB
894 lines

SIFT features for Rust

This crate contains an implemenation of the SIFT image descriptor. It aims to be compatible with the implementation found in OpenCV's feature2d module and you should be able to match features extracted with OpenCV and this crate.

Useful resources:

The code tries to follow [4] (Anatomy of the SIFT Method) in particular. It deviates in a few places to be compatible with the SIFT implementation OpenCV, namely how histograms are smoothed, angle computations and some details in how the final descriptor vector is calculated.


lib.rs:

This crate contains an implemenation of the SIFT image descriptor. It aims to be compatible with the implementation found in OpenCV's feature2d module and you should be able to match features extracted with OpenCV and this crate.

Useful resources:

The code tries to follow [4] (Anatomy of the SIFT Method) in particular. It deviates in a few places to be compatible with the SIFT implementation OpenCV, namely how histograms are smoothed, angle computations and some details in how the final descriptor vector is calculated.

Dependencies

~11MB
~218K SLoC