Update README
Browse files
README.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- kornia
|
| 5 |
+
- feature-description
|
| 6 |
+
- patch-descriptor
|
| 7 |
+
---
|
| 8 |
+
|
| 9 |
+
# kornia/sosnet
|
| 10 |
+
|
| 11 |
+
Pretrained weights for **SOSNet**,
|
| 12 |
+
used by [`kornia.feature.SOSNet`](https://kornia.readthedocs.io/en/latest/feature.html).
|
| 13 |
+
|
| 14 |
+
SOSNet is a 128-dimensional patch descriptor that adds a second-order similarity
|
| 15 |
+
regularisation term to the HardNet loss, enforcing that the structure of the descriptor
|
| 16 |
+
space reflects patch similarity at multiple scales. CVPR 2019.
|
| 17 |
+
|
| 18 |
+
**Original repo:** [yuruntian/SOSNet](https://github.com/yuruntian/SOSNet)
|
| 19 |
+
|
| 20 |
+
## Weights
|
| 21 |
+
|
| 22 |
+
| File | Training data |
|
| 23 |
+
|------|--------------|
|
| 24 |
+
| `sosnet_32x32_liberty.pth` | Liberty |
|
| 25 |
+
| `sosnet_32x32_hpatches_a.pth` | HPatches-A |
|
| 26 |
+
|
| 27 |
+
## Citation
|
| 28 |
+
|
| 29 |
+
```bibtex
|
| 30 |
+
@InProceedings{sosnet2019,
|
| 31 |
+
author = {Tian, Yurong and Yu, Xin and Fan, Bin and Wu, Fuchao
|
| 32 |
+
and Heijnen, Huub and Balntas, Vassileios},
|
| 33 |
+
title = {{SOSNet}: Second Order Similarity Regularization for
|
| 34 |
+
Local Descriptor Learning},
|
| 35 |
+
booktitle = {CVPR},
|
| 36 |
+
year = {2019}
|
| 37 |
+
}
|
| 38 |
+
```
|