ducha-aiki commited on
Commit
0b02f96
·
verified ·
1 Parent(s): ece9f20

Update README

Browse files
Files changed (1) hide show
  1. README.md +36 -0
README.md ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - kornia
5
+ - affine-shape-estimation
6
+ - feature-detection
7
+ ---
8
+
9
+ # kornia/affnet
10
+
11
+ Pretrained weights for **AffNet**,
12
+ used by [`kornia.feature.LAFAffineShapeEstimator`](https://kornia.readthedocs.io/en/latest/feature.html).
13
+
14
+ AffNet is a CNN that estimates the 2×2 affine shape matrix for a detected keypoint patch,
15
+ making subsequent description invariant to affine transformations. Trained jointly with
16
+ HardNet to maximise discriminability of affine-normalised patches. ECCV 2018.
17
+
18
+ **Original repo:** [ducha-aiki/affnet](https://github.com/ducha-aiki/affnet)
19
+
20
+ ## Weights
21
+
22
+ | File | Description |
23
+ |------|-------------|
24
+ | `AffNet.pth` | Default checkpoint |
25
+
26
+ ## Citation
27
+
28
+ ```bibtex
29
+ @inproceedings{AffNet2018,
30
+ author = {D. Mishkin and F. Radenovic and J. Matas},
31
+ title = {{Repeatability is Not Enough}: Learning Affine Regions
32
+ via Discriminability},
33
+ booktitle = {ECCV},
34
+ year = {2018}
35
+ }
36
+ ```