Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,58 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
tags:
|
4 |
+
- Super-Resolution
|
5 |
+
- computer-vision
|
6 |
+
- RealSR
|
7 |
+
- gan
|
8 |
---
|
9 |
+
|
10 |
+
### Model Description
|
11 |
+
[RealSR](https://openaccess.thecvf.com/content_CVPRW_2020/papers/w31/Ji_Real-World_Super-Resolution_via_Kernel_Estimation_and_Noise_Injection_CVPRW_2020_paper.pdf): Real-World Super-Resolution via Kernel Estimation and Noise Injection.
|
12 |
+
|
13 |
+
[NTIRE 2020 Challenge on Real-World Image Super-Resolution](https://arxiv.org/abs/2005.01996): Methods and Results
|
14 |
+
|
15 |
+
[Paper Repo](https://github.com/Tencent/Real-SR): Implementation of paper.
|
16 |
+
|
17 |
+
### Installation
|
18 |
+
```
|
19 |
+
pip install bsrgan
|
20 |
+
```
|
21 |
+
|
22 |
+
### BSRGAN Usage
|
23 |
+
```python
|
24 |
+
from bsrgan import BSRGAN
|
25 |
+
|
26 |
+
model = BSRGAN(weights='kadirnar/DF2K_JPEG', device='cuda:0', hf_model=True)
|
27 |
+
model.save = True
|
28 |
+
|
29 |
+
pred = model.predict(img_path='data/image/test.png')
|
30 |
+
```
|
31 |
+
|
32 |
+
### BibTeX Entry and Citation Info
|
33 |
+
```
|
34 |
+
@inproceedings{zhang2021designing,
|
35 |
+
title={Designing a Practical Degradation Model for Deep Blind Image Super-Resolution},
|
36 |
+
author={Zhang, Kai and Liang, Jingyun and Van Gool, Luc and Timofte, Radu},
|
37 |
+
booktitle={IEEE International Conference on Computer Vision},
|
38 |
+
pages={4791--4800},
|
39 |
+
year={2021}
|
40 |
+
}
|
41 |
+
```
|
42 |
+
```
|
43 |
+
@inproceedings{zhang2021designing,
|
44 |
+
title={Designing a Practical Degradation Model for Deep Blind Image Super-Resolution},
|
45 |
+
author={Zhang, Kai and Liang, Jingyun and Van Gool, Luc and Timofte, Radu},
|
46 |
+
booktitle={IEEE International Conference on Computer Vision},
|
47 |
+
pages={4791--4800},
|
48 |
+
year={2021}
|
49 |
+
}
|
50 |
+
```
|
51 |
+
```
|
52 |
+
@article{Lugmayr2020ntire,
|
53 |
+
title={NTIRE 2020 Challenge on Real-World Image Super-Resolution: Methods and Results},
|
54 |
+
author={Andreas Lugmayr, Martin Danelljan, Radu Timofte, Namhyuk Ahn, Dongwoon Bai, Jie Cai, Yun Cao, Junyang Chen, Kaihua Cheng, SeYoung Chun, Wei Deng, Mostafa El-Khamy Chiu, Man Ho, Xiaozhong Ji, Amin Kheradmand, Gwantae Kim, Hanseok Ko, Kanghyu Lee, Jungwon Lee, Hao Li, Ziluan Liu, Zhi-Song Liu, Shuai Liu, Yunhua Lu, Zibo Meng, Pablo Navarrete, Michelini Christian, Micheloni Kalpesh, Prajapati Haoyu, Ren Yong, Hyeok Seo, Wan-Chi Siu, Kyung-Ah Sohn, Ying Tai, Rao Muhammad Umer, Shuangquan Wang, Huibing Wang, Timothy Haoning Wu, Haoning Wu, Biao Yang, Fuzhi Yang, Jaejun Yoo, Tongtong Zhao, Yuanbo Zhou, Haijie Zhuo, Ziyao Zong, Xueyi Zou},
|
55 |
+
journal={CVPR Workshops},
|
56 |
+
year={2020},
|
57 |
+
}
|
58 |
+
```
|