├── .gitignore ├── LICENSE ├── README.md ├── args ├── eval.py └── train.py ├── assets ├── teaser_dark.svg └── teaser_light.svg ├── data.py ├── model ├── __init__.py ├── convnext.py ├── edsr.py ├── hyper.py ├── init.py ├── rdn.py ├── swin_ir.py ├── tail.py └── thera.py ├── requirements.txt ├── run_eval.py ├── run_train.py ├── run_train_and_eval.py ├── super_resolve.py ├── utils.py └── vendor └── matlab_bicubic.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/README.md -------------------------------------------------------------------------------- /args/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/args/eval.py -------------------------------------------------------------------------------- /args/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/args/train.py -------------------------------------------------------------------------------- /assets/teaser_dark.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/assets/teaser_dark.svg -------------------------------------------------------------------------------- /assets/teaser_light.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/assets/teaser_light.svg -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/data.py -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/model/__init__.py -------------------------------------------------------------------------------- /model/convnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/model/convnext.py -------------------------------------------------------------------------------- /model/edsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/model/edsr.py -------------------------------------------------------------------------------- /model/hyper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/model/hyper.py -------------------------------------------------------------------------------- /model/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/model/init.py -------------------------------------------------------------------------------- /model/rdn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/model/rdn.py -------------------------------------------------------------------------------- /model/swin_ir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/model/swin_ir.py -------------------------------------------------------------------------------- /model/tail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/model/tail.py -------------------------------------------------------------------------------- /model/thera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/model/thera.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/run_eval.py -------------------------------------------------------------------------------- /run_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/run_train.py -------------------------------------------------------------------------------- /run_train_and_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/run_train_and_eval.py -------------------------------------------------------------------------------- /super_resolve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/super_resolve.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/utils.py -------------------------------------------------------------------------------- /vendor/matlab_bicubic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prs-eth/thera/HEAD/vendor/matlab_bicubic.py --------------------------------------------------------------------------------