This model has been integrated with ai_integration for seamless portability across hosting providers.
Four-pass perceptual super-resolution with enhanced upscaling
This repository contains a TensorFlow-based implementation of 4PP-EUSR ("Deep learning-based image super-resolution considering quantitative and perceptual quality"), which considers both the quantitative (e.g., PSNR) and perceptual quality (e.g., NIQE) of the upscaled images. Our method won the 2nd place and got the highest human opinion score for Region 2 in the 2018 PIRM Challenge on Perceptual Image Super-resolution at ECCV 2018.
Nvidia-Docker is required to run this image.
docker pull deepaiorg/tf-super-resolution
nvidia-docker run --rm -it -e MODE=http -p 5000:5000 deepaiorg/tf-super-resolution
Open your browser to localhost:5000 (or the correct IP address)
Save your image as content.jpg in the current directory.
nvidia-docker run --rm -it -v `pwd`:/shared -e MODE=command_line deepaiorg/tf-super-resolution --image /shared/content.jpg --output /shared/output.jpg
docker build -t tf-super-resolution .
※ The perceptual index is calculated by "0.5 * ((10 - Ma) + NIQE)", which is used in the PIRM Challenge. Lower is better.
Followings are the performance comparison evaluated on the BSD100 dataset.

| Method | PSNR (dB) (↓) | Perceptual Index |
|---|---|---|
| EDSR | 27.796 | 5.326 |
| MDSR | 27.771 | 5.424 |
| EUSR | 27.674 | 5.307 |
| SRResNet-MSE | 27.601 | 5.217 |
| 4PP-EUSR (PIRM Challenge) | 26.569 | 2.683 |
| SRResNet-VGG22 | 26.322 | 5.183 |
| SRGAN-MSE | 25.981 | 2.802 |
| Bicubic interpolation | 25.957 | 6.995 |
| SRGAN-VGG22 | 25.697 | 2.631 |
| SRGAN-VGG54 | 25.176 | 2.351 |
| CX | 24.581 | 2.250 |
Please cite following papers when you use the code, pre-trained models, or results:
@article{choi2018deep,
title={Deep learning-based image super-resolution considering quantitative and perceptual quality},
author={Choi, Jun-Ho and Kim, Jun-Hyuk and Cheon, Manri and Lee, Jong-Seok},
journal={arXiv preprint arXiv:1809.04789},
year={2018}
}
@inproceedings{kim2018deep,
title={Deep residual network with enhanced upscaling module for super-resolution},
author={Kim, Jun-Hyuk and Lee, Jong-Seok},
booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR) Workshops},
year={2018}
}
Content type
Image
Digest
Size
1.7 GB
Last updated
about 7 years ago
docker pull deepaiorg/tf-super-resolution