https://github.com/ducha-aiki/keras-sift
https://github.com/ducha-aiki/keras-sift
keras local-features sift
Last synced: 11 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ducha-aiki/keras-sift
- Owner: ducha-aiki
- License: bsd-2-clause
- Created: 2017-03-27T19:11:06.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-03-27T19:11:35.000Z (about 9 years ago)
- Last Synced: 2025-05-08T00:45:52.609Z (about 1 year ago)
- Topics: keras, local-features, sift
- Language: Jupyter Notebook
- Size: 932 KB
- Stars: 8
- Watchers: 3
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
This is an [keras](https://github.com/fchollet/keras/) implementation of SIFT patch descriptor. It is very slow for describing one patch, but quite fast for batch.
Here are comparisons to the original Michal Perdoch implementation.
The benchmark is on W1BS dataset from [WxBS: Wide Baseline Stereo Generalizations](https://arxiv.org/abs/1504.06603.pdf) paper, figure 3. So there is no difference between versions in performance
Average performance on W1BS

Speed:
- 0.00246 s per 65x65 patch - [numpy SIFT](https://github.com/ducha-aiki/numpy-sift)
- 0.00028 s per 65x65 patch - [C++ SIFT](https://github.com/perdoch/hesaff/blob/master/siftdesc.cpp)
- 0.00100 s per 65x65 patch - CPU, 1 patch per batch
- 0.00087 s per 65x65 patch - CPU, 256 patches per batch
- 0.00236 s per 65x65 patch - GPU (GF940M), 1 patch per batch
- 0.00062 s per 65x65 patch - GPU (GF940M), 256 patches per batch
If you use this code for academic purposes, please cite the following paper:
@article {tbd}