├── .gitignore ├── DIL_sf_noise.py ├── LICENSE ├── README.md ├── RRDB.py ├── Set5 └── HR │ ├── baby.png │ ├── bird.png │ ├── butterfly.png │ ├── head.png │ └── woman.png ├── eval_noise.py ├── figs ├── framework └── visualization.png ├── generate_cropped_DF2K.py ├── requirements.txt ├── srdata_noise.py ├── util_calculate_psnr_ssim.py └── utils_logger.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/.gitignore -------------------------------------------------------------------------------- /DIL_sf_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/DIL_sf_noise.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/README.md -------------------------------------------------------------------------------- /RRDB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/RRDB.py -------------------------------------------------------------------------------- /Set5/HR/baby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/Set5/HR/baby.png -------------------------------------------------------------------------------- /Set5/HR/bird.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/Set5/HR/bird.png -------------------------------------------------------------------------------- /Set5/HR/butterfly.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/Set5/HR/butterfly.png -------------------------------------------------------------------------------- /Set5/HR/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/Set5/HR/head.png -------------------------------------------------------------------------------- /Set5/HR/woman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/Set5/HR/woman.png -------------------------------------------------------------------------------- /eval_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/eval_noise.py -------------------------------------------------------------------------------- /figs/framework: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /figs/visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/figs/visualization.png -------------------------------------------------------------------------------- /generate_cropped_DF2K.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/generate_cropped_DF2K.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/requirements.txt -------------------------------------------------------------------------------- /srdata_noise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/srdata_noise.py -------------------------------------------------------------------------------- /util_calculate_psnr_ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/util_calculate_psnr_ssim.py -------------------------------------------------------------------------------- /utils_logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lixinustc/Causal-IR-DIL/HEAD/utils_logger.py --------------------------------------------------------------------------------