├── .gitignore ├── LICENSE ├── README.md ├── docker ├── Dockerfile.cpu ├── Dockerfile.gpu └── build-and-push.sh ├── figs ├── div2k_res_val.png ├── res_quant_comparison.png ├── res_rwsr_test1.png ├── res_rwsr_test2.png ├── res_rwsr_val1.png ├── res_rwsr_val2.png └── srrescycgan.png └── srrescycgan_code_demo ├── LR ├── LR_006.png └── LR_014.png ├── README.md ├── infer.py ├── models ├── ResDNet.py └── SRResDNet.py ├── modules ├── l2proj.py └── wmad_estimator.py ├── samples ├── bird.png ├── castle.png └── guitar.png ├── sr_results_x4 ├── LR_006.png └── LR_014.png ├── test_srrescycgan.py └── trained_nets_x4 └── srrescycgan.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | __pycache__ 3 | srrescycgan_code_demo/trained_nets_x4/*.pth -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/README.md -------------------------------------------------------------------------------- /docker/Dockerfile.cpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/docker/Dockerfile.cpu -------------------------------------------------------------------------------- /docker/Dockerfile.gpu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/docker/Dockerfile.gpu -------------------------------------------------------------------------------- /docker/build-and-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/docker/build-and-push.sh -------------------------------------------------------------------------------- /figs/div2k_res_val.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/figs/div2k_res_val.png -------------------------------------------------------------------------------- /figs/res_quant_comparison.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/figs/res_quant_comparison.png -------------------------------------------------------------------------------- /figs/res_rwsr_test1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/figs/res_rwsr_test1.png -------------------------------------------------------------------------------- /figs/res_rwsr_test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/figs/res_rwsr_test2.png -------------------------------------------------------------------------------- /figs/res_rwsr_val1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/figs/res_rwsr_val1.png -------------------------------------------------------------------------------- /figs/res_rwsr_val2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/figs/res_rwsr_val2.png -------------------------------------------------------------------------------- /figs/srrescycgan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/figs/srrescycgan.png -------------------------------------------------------------------------------- /srrescycgan_code_demo/LR/LR_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/LR/LR_006.png -------------------------------------------------------------------------------- /srrescycgan_code_demo/LR/LR_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/LR/LR_014.png -------------------------------------------------------------------------------- /srrescycgan_code_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/README.md -------------------------------------------------------------------------------- /srrescycgan_code_demo/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/infer.py -------------------------------------------------------------------------------- /srrescycgan_code_demo/models/ResDNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/models/ResDNet.py -------------------------------------------------------------------------------- /srrescycgan_code_demo/models/SRResDNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/models/SRResDNet.py -------------------------------------------------------------------------------- /srrescycgan_code_demo/modules/l2proj.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/modules/l2proj.py -------------------------------------------------------------------------------- /srrescycgan_code_demo/modules/wmad_estimator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/modules/wmad_estimator.py -------------------------------------------------------------------------------- /srrescycgan_code_demo/samples/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/samples/bird.png -------------------------------------------------------------------------------- /srrescycgan_code_demo/samples/castle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/samples/castle.png -------------------------------------------------------------------------------- /srrescycgan_code_demo/samples/guitar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/samples/guitar.png -------------------------------------------------------------------------------- /srrescycgan_code_demo/sr_results_x4/LR_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/sr_results_x4/LR_006.png -------------------------------------------------------------------------------- /srrescycgan_code_demo/sr_results_x4/LR_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/sr_results_x4/LR_014.png -------------------------------------------------------------------------------- /srrescycgan_code_demo/test_srrescycgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/test_srrescycgan.py -------------------------------------------------------------------------------- /srrescycgan_code_demo/trained_nets_x4/srrescycgan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RaoUmer/SRResCycGAN/HEAD/srrescycgan_code_demo/trained_nets_x4/srrescycgan.txt --------------------------------------------------------------------------------