ducha-aiki commited on
Commit
f637fa9
·
verified ·
1 Parent(s): 9c76ed3

Update README

Browse files
Files changed (1) hide show
  1. README.md +38 -0
README.md ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ tags:
4
+ - kornia
5
+ - deblurring
6
+ - motion-estimation
7
+ ---
8
+
9
+ # kornia/defmo
10
+
11
+ Pretrained weights for **DeFMO** (Deblurring and Shape Recovery of Fast Moving Objects),
12
+ used by [`kornia.feature.DeFMO`](https://kornia.readthedocs.io/en/latest/feature.html).
13
+
14
+ DeFMO is an encoder–renderer network that takes a blurred image and background frame
15
+ as input and predicts the sharp object appearance and trajectory over time. CVPR 2021.
16
+
17
+ Weights redistributed with permission from Denys Rozumnyi.
18
+
19
+ **Original repo:** [rozumden/DeFMO](https://github.com/rozumden/DeFMO)
20
+
21
+ ## Weights
22
+
23
+ | File | Component |
24
+ |------|-----------|
25
+ | `encoder_best.pt` | Encoder |
26
+ | `rendering_best.pt` | Renderer |
27
+
28
+ ## Citation
29
+
30
+ ```bibtex
31
+ @inproceedings{DeFMO2021,
32
+ title = {{DeFMO}: Deblurring and Shape Recovery of Fast Moving Objects},
33
+ author = {Rozumnyi, Denys and Oswald, Martin R. and Ferrari, Vittorio
34
+ and Matas, Jiri and Pollefeys, Marc},
35
+ booktitle = {CVPR},
36
+ year = {2021}
37
+ }
38
+ ```