├── .gitignore ├── DPT └── README.md ├── LICENSE ├── README.md ├── VERSION ├── assets └── comparison.jpg ├── basicsr ├── __init__.py ├── archs │ ├── __init__.py │ ├── arch_util.py │ ├── uformer_arch.py │ ├── unet_arch.py │ └── vgg_arch.py ├── data │ ├── __init__.py │ ├── data_sampler.py │ ├── data_util.py │ ├── flare7kpp_dataset.py │ ├── paired_image_dataset.py │ ├── prefetch_dataloader.py │ └── transforms.py ├── dpt │ ├── __init__.py │ ├── base_model.py │ ├── blocks.py │ ├── midas_net.py │ ├── models.py │ ├── transforms.py │ └── vit.py ├── inference.py ├── losses │ ├── __init__.py │ ├── basic_loss.py │ ├── example_loss.py │ ├── flare_loss.py │ ├── gan_loss.py │ └── loss_util.py ├── metrics │ ├── README.md │ ├── README_CN.md │ ├── __init__.py │ ├── fid.py │ ├── metric_flare.py │ ├── metric_util.py │ ├── niqe.py │ ├── niqe_pris_params.npz │ ├── psnr_ssim.py │ └── test_metrics │ │ └── test_psnr_ssim.py ├── models │ ├── __init__.py │ ├── base_model.py │ ├── deflare_model.py │ ├── lr_scheduler.py │ └── sr_model.py ├── ops │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-39.pyc │ ├── dcn │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── deform_conv.cpython-39.pyc │ │ ├── deform_conv.py │ │ └── src │ │ │ ├── deform_conv_cuda.cpp │ │ │ ├── deform_conv_cuda_kernel.cu │ │ │ └── deform_conv_ext.cpp │ ├── fused_act │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-39.pyc │ │ │ └── fused_act.cpython-39.pyc │ │ ├── fused_act.py │ │ └── src │ │ │ ├── fused_bias_act.cpp │ │ │ └── fused_bias_act_kernel.cu │ └── upfirdn2d │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-39.pyc │ │ └── upfirdn2d.cpython-39.pyc │ │ ├── src │ │ ├── upfirdn2d.cpp │ │ └── upfirdn2d_kernel.cu │ │ └── upfirdn2d.py ├── requirements.txt ├── train.py ├── utils │ ├── __init__.py │ ├── color_util.py │ ├── diffjpeg.py │ ├── dist_util.py │ ├── download_util.py │ ├── file_client.py │ ├── flare_util.py │ ├── flow_util.py │ ├── img_process_util.py │ ├── img_util.py │ ├── lmdb_util.py │ ├── logger.py │ ├── matlab_functions.py │ ├── misc.py │ ├── options.py │ ├── plot_util.py │ └── registry.py └── version.py ├── dataset └── README.md ├── evaluate.py ├── experiments └── README.md ├── options └── uformer_flare7kpp_baseline_option.yml ├── requirements.txt ├── scripts ├── dist_train.sh └── inference_evaluate.sh ├── setup.cfg ├── setup.py └── version.py /.gitignore: -------------------------------------------------------------------------------- 1 | DPT/*.pt -------------------------------------------------------------------------------- /DPT/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/DPT/README.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.4.2 2 | -------------------------------------------------------------------------------- /assets/comparison.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/assets/comparison.jpg -------------------------------------------------------------------------------- /basicsr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/__init__.py -------------------------------------------------------------------------------- /basicsr/archs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/archs/__init__.py -------------------------------------------------------------------------------- /basicsr/archs/arch_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/archs/arch_util.py -------------------------------------------------------------------------------- /basicsr/archs/uformer_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/archs/uformer_arch.py -------------------------------------------------------------------------------- /basicsr/archs/unet_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/archs/unet_arch.py -------------------------------------------------------------------------------- /basicsr/archs/vgg_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/archs/vgg_arch.py -------------------------------------------------------------------------------- /basicsr/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/data/__init__.py -------------------------------------------------------------------------------- /basicsr/data/data_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/data/data_sampler.py -------------------------------------------------------------------------------- /basicsr/data/data_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/data/data_util.py -------------------------------------------------------------------------------- /basicsr/data/flare7kpp_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/data/flare7kpp_dataset.py -------------------------------------------------------------------------------- /basicsr/data/paired_image_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/data/paired_image_dataset.py -------------------------------------------------------------------------------- /basicsr/data/prefetch_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/data/prefetch_dataloader.py -------------------------------------------------------------------------------- /basicsr/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/data/transforms.py -------------------------------------------------------------------------------- /basicsr/dpt/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /basicsr/dpt/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/dpt/base_model.py -------------------------------------------------------------------------------- /basicsr/dpt/blocks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/dpt/blocks.py -------------------------------------------------------------------------------- /basicsr/dpt/midas_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/dpt/midas_net.py -------------------------------------------------------------------------------- /basicsr/dpt/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/dpt/models.py -------------------------------------------------------------------------------- /basicsr/dpt/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/dpt/transforms.py -------------------------------------------------------------------------------- /basicsr/dpt/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/dpt/vit.py -------------------------------------------------------------------------------- /basicsr/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/inference.py -------------------------------------------------------------------------------- /basicsr/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/losses/__init__.py -------------------------------------------------------------------------------- /basicsr/losses/basic_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/losses/basic_loss.py -------------------------------------------------------------------------------- /basicsr/losses/example_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/losses/example_loss.py -------------------------------------------------------------------------------- /basicsr/losses/flare_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/losses/flare_loss.py -------------------------------------------------------------------------------- /basicsr/losses/gan_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/losses/gan_loss.py -------------------------------------------------------------------------------- /basicsr/losses/loss_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/losses/loss_util.py -------------------------------------------------------------------------------- /basicsr/metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/metrics/README.md -------------------------------------------------------------------------------- /basicsr/metrics/README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/metrics/README_CN.md -------------------------------------------------------------------------------- /basicsr/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/metrics/__init__.py -------------------------------------------------------------------------------- /basicsr/metrics/fid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/metrics/fid.py -------------------------------------------------------------------------------- /basicsr/metrics/metric_flare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/metrics/metric_flare.py -------------------------------------------------------------------------------- /basicsr/metrics/metric_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/metrics/metric_util.py -------------------------------------------------------------------------------- /basicsr/metrics/niqe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/metrics/niqe.py -------------------------------------------------------------------------------- /basicsr/metrics/niqe_pris_params.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/metrics/niqe_pris_params.npz -------------------------------------------------------------------------------- /basicsr/metrics/psnr_ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/metrics/psnr_ssim.py -------------------------------------------------------------------------------- /basicsr/metrics/test_metrics/test_psnr_ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/metrics/test_metrics/test_psnr_ssim.py -------------------------------------------------------------------------------- /basicsr/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/models/__init__.py -------------------------------------------------------------------------------- /basicsr/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/models/base_model.py -------------------------------------------------------------------------------- /basicsr/models/deflare_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/models/deflare_model.py -------------------------------------------------------------------------------- /basicsr/models/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/models/lr_scheduler.py -------------------------------------------------------------------------------- /basicsr/models/sr_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/models/sr_model.py -------------------------------------------------------------------------------- /basicsr/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /basicsr/ops/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /basicsr/ops/dcn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/dcn/__init__.py -------------------------------------------------------------------------------- /basicsr/ops/dcn/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/dcn/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /basicsr/ops/dcn/__pycache__/deform_conv.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/dcn/__pycache__/deform_conv.cpython-39.pyc -------------------------------------------------------------------------------- /basicsr/ops/dcn/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/dcn/deform_conv.py -------------------------------------------------------------------------------- /basicsr/ops/dcn/src/deform_conv_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/dcn/src/deform_conv_cuda.cpp -------------------------------------------------------------------------------- /basicsr/ops/dcn/src/deform_conv_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/dcn/src/deform_conv_cuda_kernel.cu -------------------------------------------------------------------------------- /basicsr/ops/dcn/src/deform_conv_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/dcn/src/deform_conv_ext.cpp -------------------------------------------------------------------------------- /basicsr/ops/fused_act/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/fused_act/__init__.py -------------------------------------------------------------------------------- /basicsr/ops/fused_act/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/fused_act/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /basicsr/ops/fused_act/__pycache__/fused_act.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/fused_act/__pycache__/fused_act.cpython-39.pyc -------------------------------------------------------------------------------- /basicsr/ops/fused_act/fused_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/fused_act/fused_act.py -------------------------------------------------------------------------------- /basicsr/ops/fused_act/src/fused_bias_act.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/fused_act/src/fused_bias_act.cpp -------------------------------------------------------------------------------- /basicsr/ops/fused_act/src/fused_bias_act_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/fused_act/src/fused_bias_act_kernel.cu -------------------------------------------------------------------------------- /basicsr/ops/upfirdn2d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/upfirdn2d/__init__.py -------------------------------------------------------------------------------- /basicsr/ops/upfirdn2d/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/upfirdn2d/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /basicsr/ops/upfirdn2d/__pycache__/upfirdn2d.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/upfirdn2d/__pycache__/upfirdn2d.cpython-39.pyc -------------------------------------------------------------------------------- /basicsr/ops/upfirdn2d/src/upfirdn2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/upfirdn2d/src/upfirdn2d.cpp -------------------------------------------------------------------------------- /basicsr/ops/upfirdn2d/src/upfirdn2d_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/upfirdn2d/src/upfirdn2d_kernel.cu -------------------------------------------------------------------------------- /basicsr/ops/upfirdn2d/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/ops/upfirdn2d/upfirdn2d.py -------------------------------------------------------------------------------- /basicsr/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/requirements.txt -------------------------------------------------------------------------------- /basicsr/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/train.py -------------------------------------------------------------------------------- /basicsr/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/__init__.py -------------------------------------------------------------------------------- /basicsr/utils/color_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/color_util.py -------------------------------------------------------------------------------- /basicsr/utils/diffjpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/diffjpeg.py -------------------------------------------------------------------------------- /basicsr/utils/dist_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/dist_util.py -------------------------------------------------------------------------------- /basicsr/utils/download_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/download_util.py -------------------------------------------------------------------------------- /basicsr/utils/file_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/file_client.py -------------------------------------------------------------------------------- /basicsr/utils/flare_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/flare_util.py -------------------------------------------------------------------------------- /basicsr/utils/flow_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/flow_util.py -------------------------------------------------------------------------------- /basicsr/utils/img_process_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/img_process_util.py -------------------------------------------------------------------------------- /basicsr/utils/img_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/img_util.py -------------------------------------------------------------------------------- /basicsr/utils/lmdb_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/lmdb_util.py -------------------------------------------------------------------------------- /basicsr/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/logger.py -------------------------------------------------------------------------------- /basicsr/utils/matlab_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/matlab_functions.py -------------------------------------------------------------------------------- /basicsr/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/misc.py -------------------------------------------------------------------------------- /basicsr/utils/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/options.py -------------------------------------------------------------------------------- /basicsr/utils/plot_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/plot_util.py -------------------------------------------------------------------------------- /basicsr/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/utils/registry.py -------------------------------------------------------------------------------- /basicsr/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/basicsr/version.py -------------------------------------------------------------------------------- /dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/dataset/README.md -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/evaluate.py -------------------------------------------------------------------------------- /experiments/README.md: -------------------------------------------------------------------------------- 1 | # README 2 | 3 | Please place the checkpoints here and unzip it. -------------------------------------------------------------------------------- /options/uformer_flare7kpp_baseline_option.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/options/uformer_flare7kpp_baseline_option.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/scripts/dist_train.sh -------------------------------------------------------------------------------- /scripts/inference_evaluate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/scripts/inference_evaluate.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/setup.py -------------------------------------------------------------------------------- /version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yousefkotp/Flare-Free-Vision-Empowering-Uformer-with-Depth-Insights/HEAD/version.py --------------------------------------------------------------------------------