Pytorch implementation of "Unsupervised Degradation Representation Learning for Blind Super-Resolution", CVPR 2021
- Python 3.6
- PyTorch == 1.1.0
- numpy
- skimage
- imageio
- matplotlib
- cv2
1.1 Download the DIV2K dataset and the Flickr2K dataset.
1.2 Combine the HR images from these two datasets in your_data_path/DF2K/HR
to build the DF2K dataset.
Run ./main.sh
to train on the DF2K dataset. Please update dir_data
in the bash file as your_data_path
.
Download benchmark datasets (e.g., Set5, Set14 and other test sets) and prepare HR/LR images in your_data_path/benchmark
.
Run ./test.sh
to test on benchmark datasets. Please update dir_data
in the bash file as your_data_path
.
Run ./quick_test.sh
to test on an LR image. Please update img_dir
in the bash file as your_img_path
.
@InProceedings{Wang2021Unsupervised,
author = {Wang, Longguang and Wang, Yingqian and Dong, Xiaoyu and Xu, Qingyu and Yang, Jungang and An, Wei and Guo, Yulan},
title = {Unsupervised Degradation Representation Learning for Blind Super-Resolution},
booktitle = {CVPR},
year = {2021},
}
This code is built on EDSR (PyTorch), IKC and MoCo. We thank the authors for sharing the codes.