Update README
Browse files
README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- kornia
|
| 5 |
+
- feature-detection
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
# kornia/keynet
|
| 9 |
+
|
| 10 |
+
Pretrained weights for **Key.Net**,
|
| 11 |
+
used by [`kornia.feature.KeyNet`](https://kornia.readthedocs.io/en/latest/feature.html).
|
| 12 |
+
|
| 13 |
+
Key.Net is a keypoint detector that combines handcrafted (Difference of Gaussians) filters
|
| 14 |
+
with learned filters inside a shallow multi-scale CNN, trained to maximise repeatability
|
| 15 |
+
under homographic transformations. ICCV 2019.
|
| 16 |
+
|
| 17 |
+
**Original repo:** [axelBarroso/Key.Net-Pytorch](https://github.com/axelBarroso/Key.Net-Pytorch)
|
| 18 |
+
|
| 19 |
+
## Weights
|
| 20 |
+
|
| 21 |
+
| File | Description |
|
| 22 |
+
|------|-------------|
|
| 23 |
+
| `keynet_pytorch.pth` | Default checkpoint |
|
| 24 |
+
|
| 25 |
+
## Citation
|
| 26 |
+
|
| 27 |
+
```bibtex
|
| 28 |
+
@inproceedings{KeyNet2019,
|
| 29 |
+
author = {Barroso-Laguna, Axel and Riba, Edgar
|
| 30 |
+
and Ponsa, Daniel and Mikolajczyk, Krystian},
|
| 31 |
+
title = {{Key.Net}: Keypoint Detection by Handcrafted and Learned CNN Filters},
|
| 32 |
+
booktitle = {ICCV},
|
| 33 |
+
year = {2019}
|
| 34 |
+
}
|
| 35 |
+
```
|