├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── article.ipynb ├── data.py ├── demo ├── 0829x4-crop.png ├── 0851x4-crop.png └── 0869x4-crop.png ├── docs └── images │ ├── figure_1.png │ ├── figure_2.png │ ├── figure_3.png │ ├── figure_4.png │ ├── figure_5.png │ ├── figure_6.png │ ├── result-edsr.png │ ├── result-srgan.png │ └── result-wdsr.png ├── environment.yml ├── example-edsr.ipynb ├── example-srgan.ipynb ├── example-wdsr.ipynb ├── model ├── __init__.py ├── common.py ├── edsr.py ├── srgan.py └── wdsr.py ├── train.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- 1 | *.ipynb linguist-vendored 2 | 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .ipynb_checkpoints 2 | .div2k 3 | .ckpt 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/README.md -------------------------------------------------------------------------------- /article.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/article.ipynb -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/data.py -------------------------------------------------------------------------------- /demo/0829x4-crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/demo/0829x4-crop.png -------------------------------------------------------------------------------- /demo/0851x4-crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/demo/0851x4-crop.png -------------------------------------------------------------------------------- /demo/0869x4-crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/demo/0869x4-crop.png -------------------------------------------------------------------------------- /docs/images/figure_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/docs/images/figure_1.png -------------------------------------------------------------------------------- /docs/images/figure_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/docs/images/figure_2.png -------------------------------------------------------------------------------- /docs/images/figure_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/docs/images/figure_3.png -------------------------------------------------------------------------------- /docs/images/figure_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/docs/images/figure_4.png -------------------------------------------------------------------------------- /docs/images/figure_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/docs/images/figure_5.png -------------------------------------------------------------------------------- /docs/images/figure_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/docs/images/figure_6.png -------------------------------------------------------------------------------- /docs/images/result-edsr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/docs/images/result-edsr.png -------------------------------------------------------------------------------- /docs/images/result-srgan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/docs/images/result-srgan.png -------------------------------------------------------------------------------- /docs/images/result-wdsr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/docs/images/result-wdsr.png -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/environment.yml -------------------------------------------------------------------------------- /example-edsr.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/example-edsr.ipynb -------------------------------------------------------------------------------- /example-srgan.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/example-srgan.ipynb -------------------------------------------------------------------------------- /example-wdsr.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/example-wdsr.ipynb -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/model/common.py -------------------------------------------------------------------------------- /model/edsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/model/edsr.py -------------------------------------------------------------------------------- /model/srgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/model/srgan.py -------------------------------------------------------------------------------- /model/wdsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/model/wdsr.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krasserm/super-resolution/HEAD/utils.py --------------------------------------------------------------------------------