This repository contains an op-for-op PyTorch reimplementation of Image Super-Resolution Using Deep Convolutional Networks.
Contains DIV2K, DIV8K, Flickr2K, OST, T91, Set5, Set14, BSDS100 and BSDS200, etc.
Please refer to README.md in the data directory for the method of making a dataset.
Both training and testing only need to modify the config.py file.
- line 29:
upscale_factorchange to2. - line 31:
modechange totest. - line 66:
model_pathchange toresults/pretrained_models/srcnn_x2-T91-7d6e0623.pth.tar.
- line 29:
upscale_factorchange to2. - line 31:
modechange totrain. - line 33:
exp_namechange toSRCNN_x2.
- line 31:
upscale_factorchange to2. - line 33:
modechange totrain. - line 35:
exp_namechange toSRCNN_x2. - line 46:
resumechange tosamples/SRCNN_x2/epoch_xxx.pth.tar.
Source of original paper results: https://arxiv.org/pdf/1501.00092v3.pdf
In the following table, the psnr value in () indicates the result of the project, and - indicates no test.
| Method | Scale | Set5 (PSNR/SSIM) | Set14 (PSNR/SSIM) | BSD200 (PSNR/SSIM) |
|---|---|---|---|---|
| SRCNN | 2 | 36.66(36.72)/0.9542(0.9552) | 32.45(32.44)/0.9067(0.9066) | 30.29(-)/0.8977(-) |
| SRCNN | 3 | 32.75(29.82)/0.9090(0.8904) | 29.30(27.42)/0.8215(0.8380) | 27.18(-)/0.7971(-) |
| SRCNN | 4 | 30.49(25.34)/0.8628(0.7910) | 27.50(23.81)/0.7513(0.7366) | 25.60(-)/0.7184(-) |
# Download `srcnn_x2-T91-7d6e0623.pth.tar` weights to `./results/pretrained_models`
# More detail see `README.md<Download weights>`
python ./inference.py --inputs_path ./figure/butterfly_lr.png --output_path ./figure/butterfly_sr.png --weights_path ./results/pretrained_models/srcnn_x2-T91-7d6e0623.pth.tarBuild SRCNN model successfully.
Load SRCNN model weights `./results/pretrained_models/srcnn_x2-T91-7d6e0623.pth.tar` successfully.
SR image save to `./figure/butterfly_sr.png`
If you find a bug, create a GitHub issue, or even better, submit a pull request. Similarly, if you have questions, simply post them as GitHub issues.
I look forward to seeing what the community does with these models!
Chao Dong, Chen Change Loy, Kaiming He, Xiaoou Tang
Abstract
We propose a deep learning method for single image super-resolution (SR). Our method directly learns an end-to-end mapping between the
low/high-resolution images. The mapping is represented as a deep convolutional neural network (CNN)
that takes the low-resolution image as the input and outputs the high-resolution one. We further show that traditional sparse-coding-based SR methods
can also be viewed as a deep convolutional network. But unlike traditional methods that handle each component separately, our method jointly optimizes
all layers. Our deep CNN has a lightweight structure, yet demonstrates state-of-the-art restoration quality, and achieves fast speed for practical
on-line usage. We explore different network structures and parameter settings to achieve trade-offs between performance and speed. Moreover, we extend
our network to cope with three color channels simultaneously, and show better overall reconstruction quality.
[Paper] [Author's implements(Caffe)]
@misc{dong2014image,
title={Image Super-Resolution Using Deep Convolutional Networks},
author={Chao Dong and Chen Change Loy and Kaiming He and Xiaoou Tang},
year={2014},
eprint={1501.00092},
archivePrefix={arXiv},
primaryClass={cs.CV}
}
