├── .gitignore ├── LICENSE.txt ├── README.md ├── VERSION ├── basicsr ├── __init__.py ├── archs │ ├── __init__.py │ ├── arch_util.py │ ├── craft_arch.py │ └── vgg_arch.py ├── data │ ├── __init__.py │ ├── data_sampler.py │ ├── data_util.py │ ├── paired_image_dataset.py │ ├── prefetch_dataloader.py │ └── transforms.py ├── losses │ ├── __init__.py │ ├── basic_loss.py │ ├── gan_loss.py │ └── loss_util.py ├── metrics │ ├── __init__.py │ ├── metric_util.py │ ├── niqe.py │ └── psnr_ssim.py ├── models │ ├── __init__.py │ ├── base_model.py │ ├── craft_model.py │ ├── lr_scheduler.py │ └── sr_model.py ├── ops │ ├── __init__.py │ ├── dcn │ │ ├── __init__.py │ │ ├── deform_conv.py │ │ └── src │ │ │ ├── deform_conv_cuda.cpp │ │ │ ├── deform_conv_cuda_kernel.cu │ │ │ └── deform_conv_ext.cpp │ ├── fused_act │ │ ├── __init__.py │ │ ├── fused_act.py │ │ └── src │ │ │ ├── fused_bias_act.cpp │ │ │ └── fused_bias_act_kernel.cu │ └── upfirdn2d │ │ ├── __init__.py │ │ ├── src │ │ ├── upfirdn2d.cpp │ │ └── upfirdn2d_kernel.cu │ │ └── upfirdn2d.py ├── test.py ├── train.py └── utils │ ├── __init__.py │ ├── color_util.py │ ├── diffjpeg.py │ ├── dist_util.py │ ├── file_client.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 ├── figs ├── CRAFT.png ├── YumeiroCooking_CRAFT.png ├── YumeiroCooking_ESRT.png ├── YumeiroCooking_HR.png ├── YumeiroCooking_LR.png ├── YumeiroCooking_SWINIR.png ├── img012_CRAFT.png ├── img012_ESRT.png ├── img012_HR.png ├── img012_LR.png └── img012_SWINIR.png ├── inference └── inference_CRAFT.py ├── options └── train │ └── CRAFT │ ├── train_CRAFT_SRx2_scratch.yml │ ├── train_CRAFT_SRx3_scratch.yml │ └── train_CRAFT_SRx4_scratch.yml ├── requirements.txt ├── scripts ├── data_preparation │ ├── create_lmdb.py │ ├── download_datasets.py │ ├── extract_images_from_tfrecords.py │ ├── extract_subimages.py │ ├── generate_meta_info.py │ ├── prepare_hifacegan_dataset.py │ └── regroup_reds_dataset.py ├── dist_test.sh ├── dist_train.sh ├── download_gdrive.py ├── download_pretrained_models.py ├── matlab_scripts │ ├── back_projection │ │ ├── backprojection.m │ │ ├── main_bp.m │ │ └── main_reverse_filter.m │ ├── generate_LR_Vimeo90K.m │ └── generate_bicubic_img.m ├── metrics │ ├── calculate_fid_folder.py │ ├── calculate_fid_stats_from_datasets.py │ ├── calculate_lpips.py │ ├── calculate_niqe.py │ ├── calculate_psnr_ssim.py │ └── calculate_stylegan2_fid.py ├── model_conversion │ ├── convert_dfdnet.py │ ├── convert_models.py │ ├── convert_ridnet.py │ └── convert_stylegan.py ├── plot │ ├── README.md │ └── model_complexity_cmp_bsrn.py └── publish_models.py ├── setup.cfg └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/README.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 1.4.2 2 | -------------------------------------------------------------------------------- /basicsr/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/__init__.py -------------------------------------------------------------------------------- /basicsr/archs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/archs/__init__.py -------------------------------------------------------------------------------- /basicsr/archs/arch_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/archs/arch_util.py -------------------------------------------------------------------------------- /basicsr/archs/craft_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/archs/craft_arch.py -------------------------------------------------------------------------------- /basicsr/archs/vgg_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/archs/vgg_arch.py -------------------------------------------------------------------------------- /basicsr/data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/data/__init__.py -------------------------------------------------------------------------------- /basicsr/data/data_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/data/data_sampler.py -------------------------------------------------------------------------------- /basicsr/data/data_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/data/data_util.py -------------------------------------------------------------------------------- /basicsr/data/paired_image_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/data/paired_image_dataset.py -------------------------------------------------------------------------------- /basicsr/data/prefetch_dataloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/data/prefetch_dataloader.py -------------------------------------------------------------------------------- /basicsr/data/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/data/transforms.py -------------------------------------------------------------------------------- /basicsr/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/losses/__init__.py -------------------------------------------------------------------------------- /basicsr/losses/basic_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/losses/basic_loss.py -------------------------------------------------------------------------------- /basicsr/losses/gan_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/losses/gan_loss.py -------------------------------------------------------------------------------- /basicsr/losses/loss_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/losses/loss_util.py -------------------------------------------------------------------------------- /basicsr/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/metrics/__init__.py -------------------------------------------------------------------------------- /basicsr/metrics/metric_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/metrics/metric_util.py -------------------------------------------------------------------------------- /basicsr/metrics/niqe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/metrics/niqe.py -------------------------------------------------------------------------------- /basicsr/metrics/psnr_ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/metrics/psnr_ssim.py -------------------------------------------------------------------------------- /basicsr/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/models/__init__.py -------------------------------------------------------------------------------- /basicsr/models/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/models/base_model.py -------------------------------------------------------------------------------- /basicsr/models/craft_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/models/craft_model.py -------------------------------------------------------------------------------- /basicsr/models/lr_scheduler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/models/lr_scheduler.py -------------------------------------------------------------------------------- /basicsr/models/sr_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/models/sr_model.py -------------------------------------------------------------------------------- /basicsr/ops/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /basicsr/ops/dcn/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/ops/dcn/__init__.py -------------------------------------------------------------------------------- /basicsr/ops/dcn/deform_conv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/ops/dcn/deform_conv.py -------------------------------------------------------------------------------- /basicsr/ops/dcn/src/deform_conv_cuda.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/ops/dcn/src/deform_conv_cuda.cpp -------------------------------------------------------------------------------- /basicsr/ops/dcn/src/deform_conv_cuda_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/ops/dcn/src/deform_conv_cuda_kernel.cu -------------------------------------------------------------------------------- /basicsr/ops/dcn/src/deform_conv_ext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/ops/dcn/src/deform_conv_ext.cpp -------------------------------------------------------------------------------- /basicsr/ops/fused_act/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/ops/fused_act/__init__.py -------------------------------------------------------------------------------- /basicsr/ops/fused_act/fused_act.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/ops/fused_act/fused_act.py -------------------------------------------------------------------------------- /basicsr/ops/fused_act/src/fused_bias_act.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/ops/fused_act/src/fused_bias_act.cpp -------------------------------------------------------------------------------- /basicsr/ops/fused_act/src/fused_bias_act_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/ops/fused_act/src/fused_bias_act_kernel.cu -------------------------------------------------------------------------------- /basicsr/ops/upfirdn2d/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/ops/upfirdn2d/__init__.py -------------------------------------------------------------------------------- /basicsr/ops/upfirdn2d/src/upfirdn2d.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/ops/upfirdn2d/src/upfirdn2d.cpp -------------------------------------------------------------------------------- /basicsr/ops/upfirdn2d/src/upfirdn2d_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/ops/upfirdn2d/src/upfirdn2d_kernel.cu -------------------------------------------------------------------------------- /basicsr/ops/upfirdn2d/upfirdn2d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/ops/upfirdn2d/upfirdn2d.py -------------------------------------------------------------------------------- /basicsr/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/test.py -------------------------------------------------------------------------------- /basicsr/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/train.py -------------------------------------------------------------------------------- /basicsr/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/__init__.py -------------------------------------------------------------------------------- /basicsr/utils/color_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/color_util.py -------------------------------------------------------------------------------- /basicsr/utils/diffjpeg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/diffjpeg.py -------------------------------------------------------------------------------- /basicsr/utils/dist_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/dist_util.py -------------------------------------------------------------------------------- /basicsr/utils/file_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/file_client.py -------------------------------------------------------------------------------- /basicsr/utils/img_process_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/img_process_util.py -------------------------------------------------------------------------------- /basicsr/utils/img_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/img_util.py -------------------------------------------------------------------------------- /basicsr/utils/lmdb_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/lmdb_util.py -------------------------------------------------------------------------------- /basicsr/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/logger.py -------------------------------------------------------------------------------- /basicsr/utils/matlab_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/matlab_functions.py -------------------------------------------------------------------------------- /basicsr/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/misc.py -------------------------------------------------------------------------------- /basicsr/utils/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/options.py -------------------------------------------------------------------------------- /basicsr/utils/plot_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/plot_util.py -------------------------------------------------------------------------------- /basicsr/utils/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/basicsr/utils/registry.py -------------------------------------------------------------------------------- /figs/CRAFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/figs/CRAFT.png -------------------------------------------------------------------------------- /figs/YumeiroCooking_CRAFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/figs/YumeiroCooking_CRAFT.png -------------------------------------------------------------------------------- /figs/YumeiroCooking_ESRT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/figs/YumeiroCooking_ESRT.png -------------------------------------------------------------------------------- /figs/YumeiroCooking_HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/figs/YumeiroCooking_HR.png -------------------------------------------------------------------------------- /figs/YumeiroCooking_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/figs/YumeiroCooking_LR.png -------------------------------------------------------------------------------- /figs/YumeiroCooking_SWINIR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/figs/YumeiroCooking_SWINIR.png -------------------------------------------------------------------------------- /figs/img012_CRAFT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/figs/img012_CRAFT.png -------------------------------------------------------------------------------- /figs/img012_ESRT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/figs/img012_ESRT.png -------------------------------------------------------------------------------- /figs/img012_HR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/figs/img012_HR.png -------------------------------------------------------------------------------- /figs/img012_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/figs/img012_LR.png -------------------------------------------------------------------------------- /figs/img012_SWINIR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/figs/img012_SWINIR.png -------------------------------------------------------------------------------- /inference/inference_CRAFT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/inference/inference_CRAFT.py -------------------------------------------------------------------------------- /options/train/CRAFT/train_CRAFT_SRx2_scratch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/options/train/CRAFT/train_CRAFT_SRx2_scratch.yml -------------------------------------------------------------------------------- /options/train/CRAFT/train_CRAFT_SRx3_scratch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/options/train/CRAFT/train_CRAFT_SRx3_scratch.yml -------------------------------------------------------------------------------- /options/train/CRAFT/train_CRAFT_SRx4_scratch.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/options/train/CRAFT/train_CRAFT_SRx4_scratch.yml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/data_preparation/create_lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/data_preparation/create_lmdb.py -------------------------------------------------------------------------------- /scripts/data_preparation/download_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/data_preparation/download_datasets.py -------------------------------------------------------------------------------- /scripts/data_preparation/extract_images_from_tfrecords.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/data_preparation/extract_images_from_tfrecords.py -------------------------------------------------------------------------------- /scripts/data_preparation/extract_subimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/data_preparation/extract_subimages.py -------------------------------------------------------------------------------- /scripts/data_preparation/generate_meta_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/data_preparation/generate_meta_info.py -------------------------------------------------------------------------------- /scripts/data_preparation/prepare_hifacegan_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/data_preparation/prepare_hifacegan_dataset.py -------------------------------------------------------------------------------- /scripts/data_preparation/regroup_reds_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/data_preparation/regroup_reds_dataset.py -------------------------------------------------------------------------------- /scripts/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/dist_test.sh -------------------------------------------------------------------------------- /scripts/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/dist_train.sh -------------------------------------------------------------------------------- /scripts/download_gdrive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/download_gdrive.py -------------------------------------------------------------------------------- /scripts/download_pretrained_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/download_pretrained_models.py -------------------------------------------------------------------------------- /scripts/matlab_scripts/back_projection/backprojection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/matlab_scripts/back_projection/backprojection.m -------------------------------------------------------------------------------- /scripts/matlab_scripts/back_projection/main_bp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/matlab_scripts/back_projection/main_bp.m -------------------------------------------------------------------------------- /scripts/matlab_scripts/back_projection/main_reverse_filter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/matlab_scripts/back_projection/main_reverse_filter.m -------------------------------------------------------------------------------- /scripts/matlab_scripts/generate_LR_Vimeo90K.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/matlab_scripts/generate_LR_Vimeo90K.m -------------------------------------------------------------------------------- /scripts/matlab_scripts/generate_bicubic_img.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/matlab_scripts/generate_bicubic_img.m -------------------------------------------------------------------------------- /scripts/metrics/calculate_fid_folder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/metrics/calculate_fid_folder.py -------------------------------------------------------------------------------- /scripts/metrics/calculate_fid_stats_from_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/metrics/calculate_fid_stats_from_datasets.py -------------------------------------------------------------------------------- /scripts/metrics/calculate_lpips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/metrics/calculate_lpips.py -------------------------------------------------------------------------------- /scripts/metrics/calculate_niqe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/metrics/calculate_niqe.py -------------------------------------------------------------------------------- /scripts/metrics/calculate_psnr_ssim.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/metrics/calculate_psnr_ssim.py -------------------------------------------------------------------------------- /scripts/metrics/calculate_stylegan2_fid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/metrics/calculate_stylegan2_fid.py -------------------------------------------------------------------------------- /scripts/model_conversion/convert_dfdnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/model_conversion/convert_dfdnet.py -------------------------------------------------------------------------------- /scripts/model_conversion/convert_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/model_conversion/convert_models.py -------------------------------------------------------------------------------- /scripts/model_conversion/convert_ridnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/model_conversion/convert_ridnet.py -------------------------------------------------------------------------------- /scripts/model_conversion/convert_stylegan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/model_conversion/convert_stylegan.py -------------------------------------------------------------------------------- /scripts/plot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/plot/README.md -------------------------------------------------------------------------------- /scripts/plot/model_complexity_cmp_bsrn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/plot/model_complexity_cmp_bsrn.py -------------------------------------------------------------------------------- /scripts/publish_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/scripts/publish_models.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AVC2-UESTC/CRAFT-SR/HEAD/setup.py --------------------------------------------------------------------------------