├── .gitignore ├── .vscode └── settings.json ├── ESRGAN.py ├── ESRGAN_demo.py ├── README.md ├── RTC-SR.py ├── attention_keras.py ├── conda_list.txt ├── data └── weights │ ├── DIV2K_discriminator_4X_epoch65000.h5 │ ├── DIV2K_gan.h5 │ └── DIV2K_generator_4X_epoch65000.h5 ├── images ├── inputs │ ├── 2-(4,5).png │ ├── 50-(2,2).png │ ├── img_001_SRF_4_LR.png │ └── img_014_SRF_4_LR.png ├── outputs │ ├── 2-(4,5).png │ ├── 2-(4,5)_ESRGAN.png │ ├── 50-(2,2).png │ ├── 50-(2,2)_ESRGAN.png │ ├── img_001_SRF_4_LR.png │ ├── img_001_SRF_4_LR_ESRGAN.png │ ├── img_014_SRF_4_LR.png │ └── img_014_SRF_4_LR_ESRGAN.png └── show │ ├── img_001_SRF_4_HR-Epoch99000.png │ └── img_014_SRF_4_HR-Epoch99000.png ├── srgan.py ├── util.py └── vgg19_noAct.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ESRGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/ESRGAN.py -------------------------------------------------------------------------------- /ESRGAN_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/ESRGAN_demo.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/README.md -------------------------------------------------------------------------------- /RTC-SR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/RTC-SR.py -------------------------------------------------------------------------------- /attention_keras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/attention_keras.py -------------------------------------------------------------------------------- /conda_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/conda_list.txt -------------------------------------------------------------------------------- /data/weights/DIV2K_discriminator_4X_epoch65000.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/data/weights/DIV2K_discriminator_4X_epoch65000.h5 -------------------------------------------------------------------------------- /data/weights/DIV2K_gan.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/data/weights/DIV2K_gan.h5 -------------------------------------------------------------------------------- /data/weights/DIV2K_generator_4X_epoch65000.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/data/weights/DIV2K_generator_4X_epoch65000.h5 -------------------------------------------------------------------------------- /images/inputs/2-(4,5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/inputs/2-(4,5).png -------------------------------------------------------------------------------- /images/inputs/50-(2,2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/inputs/50-(2,2).png -------------------------------------------------------------------------------- /images/inputs/img_001_SRF_4_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/inputs/img_001_SRF_4_LR.png -------------------------------------------------------------------------------- /images/inputs/img_014_SRF_4_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/inputs/img_014_SRF_4_LR.png -------------------------------------------------------------------------------- /images/outputs/2-(4,5).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/outputs/2-(4,5).png -------------------------------------------------------------------------------- /images/outputs/2-(4,5)_ESRGAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/outputs/2-(4,5)_ESRGAN.png -------------------------------------------------------------------------------- /images/outputs/50-(2,2).png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/outputs/50-(2,2).png -------------------------------------------------------------------------------- /images/outputs/50-(2,2)_ESRGAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/outputs/50-(2,2)_ESRGAN.png -------------------------------------------------------------------------------- /images/outputs/img_001_SRF_4_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/outputs/img_001_SRF_4_LR.png -------------------------------------------------------------------------------- /images/outputs/img_001_SRF_4_LR_ESRGAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/outputs/img_001_SRF_4_LR_ESRGAN.png -------------------------------------------------------------------------------- /images/outputs/img_014_SRF_4_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/outputs/img_014_SRF_4_LR.png -------------------------------------------------------------------------------- /images/outputs/img_014_SRF_4_LR_ESRGAN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/outputs/img_014_SRF_4_LR_ESRGAN.png -------------------------------------------------------------------------------- /images/show/img_001_SRF_4_HR-Epoch99000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/show/img_001_SRF_4_HR-Epoch99000.png -------------------------------------------------------------------------------- /images/show/img_014_SRF_4_HR-Epoch99000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/images/show/img_014_SRF_4_HR-Epoch99000.png -------------------------------------------------------------------------------- /srgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/srgan.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/util.py -------------------------------------------------------------------------------- /vgg19_noAct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fenghansen/ESRGAN-Keras/HEAD/vgg19_noAct.py --------------------------------------------------------------------------------