├── .idea ├── .gitignore ├── SuperRestoration.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── BSRGAN ├── bsrgan_model.py ├── test_bsrgan.py └── test_bsrgan_metrics.py ├── ESRGAN ├── ESRGAN3_x4_DFO_lr=e-4_batch=16_out=128.py ├── ESRGANdatasets.py ├── VGGLoss.py ├── VGGLoss2.py ├── demo_realesrgan.py ├── gen_datasets.py ├── model.py ├── realesrgan_model.py ├── test.py ├── test_realesrgan.py ├── test_realesrgan_metrics.py ├── train.py ├── train_ESRGAN.py ├── train_ESRGAN2.py ├── train_ESRGAN_iter.py └── train_ESRGAN_iter2.py ├── FFT.py ├── FSRCNN ├── FSRCNN_x3_MSRA_T91_lr=e-1_batch=128_out=19_res.py ├── FSRCNNdatasets.py ├── N2-10-4_x3_MSRA_T91res_lr=e-1_batch=128_Huber.py ├── gen_datasets.py ├── model.py ├── test.py ├── train.py ├── train_N2_10_4.py └── train_deconv.py ├── HCFlow ├── ActNorms.py ├── AffineCouplings.py ├── Basic.py ├── ConditionalFlow.py ├── FlowNet_Rescaling_x4.py ├── FlowNet_SR_x4.py ├── FlowStep.py ├── HCFlowNet_SR_arch.py ├── HCFlow_SR_model.py ├── Permutations.py ├── base_model.py ├── discriminator_vgg_arch.py ├── loss.py ├── module_util.py ├── networks.py ├── options.py ├── test_SR_DF2K_4X_HCFlow.yml ├── test_hcflow.py ├── thops.py └── util.py ├── README.md ├── SRCNN ├── MatVsPy.py ├── SRCNN_x2.py ├── SRCNNdatasets.py ├── gen_datasets.py ├── models.py ├── test.py └── train.py ├── SRFlow ├── FlowActNorms.py ├── FlowAffineCouplingsAblation.py ├── FlowStep.py ├── FlowUpsamplerNet.py ├── Permutations.py ├── RRDBNet_arch.py ├── SRFlowNet_arch.py ├── SRFlow_DF2K_4X.yml ├── SRFlow_model.py ├── Split.py ├── base_model.py ├── flow.py ├── glow_arch.py ├── module_util.py ├── options.py ├── test_srflow.py ├── thops.py ├── timer.py └── util.py ├── SRResNet ├── SRGAN_x4_MSRA_DIV2Kaug_lr=e-4_batch=16_out=96.py ├── SRResNet_x4_DIV2Ksub_iter=400000.py ├── SRResNetdatasets.py ├── VGGLoss.py ├── eval.py ├── gen_datasets.py ├── model.py ├── result │ ├── baboon.bmp │ ├── baboon_SRGAN_x4.bmp │ ├── baboon_SRResNet_x4.bmp │ ├── baboon_bicubic_x4.bmp │ ├── baby_GT.bmp │ ├── baby_GT_SRGAN_x4.bmp │ ├── baby_GT_SRResNet_x4.bmp │ ├── baby_GT_bicubic_x4.bmp │ ├── coastguard.bmp │ ├── coastguard_SRGAN_x4.bmp │ ├── coastguard_SRResNet_x4.bmp │ ├── coastguard_bicubic_x4.bmp │ ├── comic.bmp │ ├── comic_SRGAN_x4.bmp │ ├── comic_SRResNet_x4.bmp │ ├── comic_bicubic_x4.bmp │ ├── flowers.bmp │ ├── flowers_SRGAN_x4.bmp │ ├── flowers_SRResNet_x4.bmp │ ├── flowers_bicubic_x4.bmp │ ├── head_GT.bmp │ ├── head_GT_SRGAN_x4.bmp │ ├── head_GT_SRResNet_x4.bmp │ ├── head_GT_bicubic_x4.bmp │ ├── woman_GT.bmp │ ├── woman_GT_SRGAN_x4.bmp │ ├── woman_GT_SRResNet_x4.bmp │ └── woman_GT_bicubic_x4.bmp ├── script.py ├── test.py ├── train.py ├── train2.py ├── train_SRGAN.py ├── train_SRGAN2.py ├── train_SRGAN_WGAN.py └── train_SRGAN_iter.py ├── SwinIR ├── swinir_model.py ├── test_classical_swinir.py ├── test_swinir.py └── test_swinir_metrics.py ├── ViewLoss.py ├── create_lmdb.py ├── csv2visdom.py ├── data_aug.py ├── datasets ├── Set14 │ ├── baboon.bmp │ ├── barbara.bmp │ ├── bridge.bmp │ ├── coastguard.bmp │ ├── comic.bmp │ ├── face.bmp │ ├── flowers.bmp │ ├── foreman.bmp │ ├── lenna.bmp │ ├── man.bmp │ ├── monarch.bmp │ ├── pepper.bmp │ ├── ppt3.bmp │ └── zebra.bmp ├── Set5 │ ├── baby_GT.bmp │ ├── bird_GT.bmp │ ├── butterfly_GT.bmp │ ├── head_GT.bmp │ └── woman_GT.bmp └── T91 │ ├── t1.png │ ├── t10.png │ ├── t11.png │ ├── t12.png │ ├── t13.png │ ├── t14.png │ ├── t15.png │ ├── t16.png │ ├── t17.png │ ├── t18.png │ ├── t19.png │ ├── t2.png │ ├── t20.png │ ├── t21.png │ ├── t22.png │ ├── t23.png │ ├── t24.png │ ├── t25.png │ ├── t26.png │ ├── t27.png │ ├── t28.png │ ├── t29.png │ ├── t3.png │ ├── t30.png │ ├── t31.png │ ├── t32.png │ ├── t33.png │ ├── t34.png │ ├── t35.png │ ├── t36.png │ ├── t37.png │ ├── t38.png │ ├── t39.png │ ├── t4.png │ ├── t40.png │ ├── t42.png │ ├── t43.png │ ├── t44.png │ ├── t45.png │ ├── t46.png │ ├── t47.png │ ├── t48.png │ ├── t49.png │ ├── t5.png │ ├── t50.png │ ├── t51.png │ ├── t52.png │ ├── t53.png │ ├── t54.png │ ├── t55.png │ ├── t56.png │ ├── t57.png │ ├── t58.png │ ├── t59.png │ ├── t6.png │ ├── t60.png │ ├── t61.png │ ├── t62.png │ ├── t63.png │ ├── t64.png │ ├── t65.png │ ├── t66.png │ ├── t7.png │ ├── t8.png │ ├── t9.png │ ├── tt1.png │ ├── tt10.png │ ├── tt12.png │ ├── tt13.png │ ├── tt14.png │ ├── tt15.png │ ├── tt16.png │ ├── tt17.png │ ├── tt18.png │ ├── tt19.png │ ├── tt2.png │ ├── tt20.png │ ├── tt21.png │ ├── tt22.png │ ├── tt23.png │ ├── tt24.png │ ├── tt25.png │ ├── tt26.png │ ├── tt27.png │ ├── tt3.png │ ├── tt4.png │ ├── tt5.png │ ├── tt6.png │ ├── tt7.png │ ├── tt8.png │ └── tt9.png ├── imresize.py ├── metrics.py ├── model_utils.py ├── model_utils2.py ├── niqe.py ├── niqe_pris_params.npz ├── pth2csv.py ├── test_metrics.py └── utils.py /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # 默认忽略的文件 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/SuperRestoration.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/.idea/SuperRestoration.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /BSRGAN/bsrgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/BSRGAN/bsrgan_model.py -------------------------------------------------------------------------------- /BSRGAN/test_bsrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/BSRGAN/test_bsrgan.py -------------------------------------------------------------------------------- /BSRGAN/test_bsrgan_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/BSRGAN/test_bsrgan_metrics.py -------------------------------------------------------------------------------- /ESRGAN/ESRGAN3_x4_DFO_lr=e-4_batch=16_out=128.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/ESRGAN3_x4_DFO_lr=e-4_batch=16_out=128.py -------------------------------------------------------------------------------- /ESRGAN/ESRGANdatasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/ESRGANdatasets.py -------------------------------------------------------------------------------- /ESRGAN/VGGLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/VGGLoss.py -------------------------------------------------------------------------------- /ESRGAN/VGGLoss2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/VGGLoss2.py -------------------------------------------------------------------------------- /ESRGAN/demo_realesrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/demo_realesrgan.py -------------------------------------------------------------------------------- /ESRGAN/gen_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/gen_datasets.py -------------------------------------------------------------------------------- /ESRGAN/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/model.py -------------------------------------------------------------------------------- /ESRGAN/realesrgan_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/realesrgan_model.py -------------------------------------------------------------------------------- /ESRGAN/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/test.py -------------------------------------------------------------------------------- /ESRGAN/test_realesrgan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/test_realesrgan.py -------------------------------------------------------------------------------- /ESRGAN/test_realesrgan_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/test_realesrgan_metrics.py -------------------------------------------------------------------------------- /ESRGAN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/train.py -------------------------------------------------------------------------------- /ESRGAN/train_ESRGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/train_ESRGAN.py -------------------------------------------------------------------------------- /ESRGAN/train_ESRGAN2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/train_ESRGAN2.py -------------------------------------------------------------------------------- /ESRGAN/train_ESRGAN_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/train_ESRGAN_iter.py -------------------------------------------------------------------------------- /ESRGAN/train_ESRGAN_iter2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ESRGAN/train_ESRGAN_iter2.py -------------------------------------------------------------------------------- /FFT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/FFT.py -------------------------------------------------------------------------------- /FSRCNN/FSRCNN_x3_MSRA_T91_lr=e-1_batch=128_out=19_res.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/FSRCNN/FSRCNN_x3_MSRA_T91_lr=e-1_batch=128_out=19_res.py -------------------------------------------------------------------------------- /FSRCNN/FSRCNNdatasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/FSRCNN/FSRCNNdatasets.py -------------------------------------------------------------------------------- /FSRCNN/N2-10-4_x3_MSRA_T91res_lr=e-1_batch=128_Huber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/FSRCNN/N2-10-4_x3_MSRA_T91res_lr=e-1_batch=128_Huber.py -------------------------------------------------------------------------------- /FSRCNN/gen_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/FSRCNN/gen_datasets.py -------------------------------------------------------------------------------- /FSRCNN/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/FSRCNN/model.py -------------------------------------------------------------------------------- /FSRCNN/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/FSRCNN/test.py -------------------------------------------------------------------------------- /FSRCNN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/FSRCNN/train.py -------------------------------------------------------------------------------- /FSRCNN/train_N2_10_4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/FSRCNN/train_N2_10_4.py -------------------------------------------------------------------------------- /FSRCNN/train_deconv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/FSRCNN/train_deconv.py -------------------------------------------------------------------------------- /HCFlow/ActNorms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/ActNorms.py -------------------------------------------------------------------------------- /HCFlow/AffineCouplings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/AffineCouplings.py -------------------------------------------------------------------------------- /HCFlow/Basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/Basic.py -------------------------------------------------------------------------------- /HCFlow/ConditionalFlow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/ConditionalFlow.py -------------------------------------------------------------------------------- /HCFlow/FlowNet_Rescaling_x4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/FlowNet_Rescaling_x4.py -------------------------------------------------------------------------------- /HCFlow/FlowNet_SR_x4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/FlowNet_SR_x4.py -------------------------------------------------------------------------------- /HCFlow/FlowStep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/FlowStep.py -------------------------------------------------------------------------------- /HCFlow/HCFlowNet_SR_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/HCFlowNet_SR_arch.py -------------------------------------------------------------------------------- /HCFlow/HCFlow_SR_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/HCFlow_SR_model.py -------------------------------------------------------------------------------- /HCFlow/Permutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/Permutations.py -------------------------------------------------------------------------------- /HCFlow/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/base_model.py -------------------------------------------------------------------------------- /HCFlow/discriminator_vgg_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/discriminator_vgg_arch.py -------------------------------------------------------------------------------- /HCFlow/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/loss.py -------------------------------------------------------------------------------- /HCFlow/module_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/module_util.py -------------------------------------------------------------------------------- /HCFlow/networks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/networks.py -------------------------------------------------------------------------------- /HCFlow/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/options.py -------------------------------------------------------------------------------- /HCFlow/test_SR_DF2K_4X_HCFlow.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/test_SR_DF2K_4X_HCFlow.yml -------------------------------------------------------------------------------- /HCFlow/test_hcflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/test_hcflow.py -------------------------------------------------------------------------------- /HCFlow/thops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/thops.py -------------------------------------------------------------------------------- /HCFlow/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/HCFlow/util.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/README.md -------------------------------------------------------------------------------- /SRCNN/MatVsPy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRCNN/MatVsPy.py -------------------------------------------------------------------------------- /SRCNN/SRCNN_x2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRCNN/SRCNN_x2.py -------------------------------------------------------------------------------- /SRCNN/SRCNNdatasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRCNN/SRCNNdatasets.py -------------------------------------------------------------------------------- /SRCNN/gen_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRCNN/gen_datasets.py -------------------------------------------------------------------------------- /SRCNN/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRCNN/models.py -------------------------------------------------------------------------------- /SRCNN/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRCNN/test.py -------------------------------------------------------------------------------- /SRCNN/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRCNN/train.py -------------------------------------------------------------------------------- /SRFlow/FlowActNorms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/FlowActNorms.py -------------------------------------------------------------------------------- /SRFlow/FlowAffineCouplingsAblation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/FlowAffineCouplingsAblation.py -------------------------------------------------------------------------------- /SRFlow/FlowStep.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/FlowStep.py -------------------------------------------------------------------------------- /SRFlow/FlowUpsamplerNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/FlowUpsamplerNet.py -------------------------------------------------------------------------------- /SRFlow/Permutations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/Permutations.py -------------------------------------------------------------------------------- /SRFlow/RRDBNet_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/RRDBNet_arch.py -------------------------------------------------------------------------------- /SRFlow/SRFlowNet_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/SRFlowNet_arch.py -------------------------------------------------------------------------------- /SRFlow/SRFlow_DF2K_4X.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/SRFlow_DF2K_4X.yml -------------------------------------------------------------------------------- /SRFlow/SRFlow_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/SRFlow_model.py -------------------------------------------------------------------------------- /SRFlow/Split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/Split.py -------------------------------------------------------------------------------- /SRFlow/base_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/base_model.py -------------------------------------------------------------------------------- /SRFlow/flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/flow.py -------------------------------------------------------------------------------- /SRFlow/glow_arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/glow_arch.py -------------------------------------------------------------------------------- /SRFlow/module_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/module_util.py -------------------------------------------------------------------------------- /SRFlow/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/options.py -------------------------------------------------------------------------------- /SRFlow/test_srflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/test_srflow.py -------------------------------------------------------------------------------- /SRFlow/thops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/thops.py -------------------------------------------------------------------------------- /SRFlow/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/timer.py -------------------------------------------------------------------------------- /SRFlow/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRFlow/util.py -------------------------------------------------------------------------------- /SRResNet/SRGAN_x4_MSRA_DIV2Kaug_lr=e-4_batch=16_out=96.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/SRGAN_x4_MSRA_DIV2Kaug_lr=e-4_batch=16_out=96.py -------------------------------------------------------------------------------- /SRResNet/SRResNet_x4_DIV2Ksub_iter=400000.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/SRResNet_x4_DIV2Ksub_iter=400000.py -------------------------------------------------------------------------------- /SRResNet/SRResNetdatasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/SRResNetdatasets.py -------------------------------------------------------------------------------- /SRResNet/VGGLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/VGGLoss.py -------------------------------------------------------------------------------- /SRResNet/eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/eval.py -------------------------------------------------------------------------------- /SRResNet/gen_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/gen_datasets.py -------------------------------------------------------------------------------- /SRResNet/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/model.py -------------------------------------------------------------------------------- /SRResNet/result/baboon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/baboon.bmp -------------------------------------------------------------------------------- /SRResNet/result/baboon_SRGAN_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/baboon_SRGAN_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/baboon_SRResNet_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/baboon_SRResNet_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/baboon_bicubic_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/baboon_bicubic_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/baby_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/baby_GT.bmp -------------------------------------------------------------------------------- /SRResNet/result/baby_GT_SRGAN_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/baby_GT_SRGAN_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/baby_GT_SRResNet_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/baby_GT_SRResNet_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/baby_GT_bicubic_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/baby_GT_bicubic_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/coastguard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/coastguard.bmp -------------------------------------------------------------------------------- /SRResNet/result/coastguard_SRGAN_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/coastguard_SRGAN_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/coastguard_SRResNet_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/coastguard_SRResNet_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/coastguard_bicubic_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/coastguard_bicubic_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/comic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/comic.bmp -------------------------------------------------------------------------------- /SRResNet/result/comic_SRGAN_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/comic_SRGAN_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/comic_SRResNet_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/comic_SRResNet_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/comic_bicubic_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/comic_bicubic_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/flowers.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/flowers.bmp -------------------------------------------------------------------------------- /SRResNet/result/flowers_SRGAN_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/flowers_SRGAN_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/flowers_SRResNet_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/flowers_SRResNet_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/flowers_bicubic_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/flowers_bicubic_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/head_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/head_GT.bmp -------------------------------------------------------------------------------- /SRResNet/result/head_GT_SRGAN_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/head_GT_SRGAN_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/head_GT_SRResNet_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/head_GT_SRResNet_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/head_GT_bicubic_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/head_GT_bicubic_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/woman_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/woman_GT.bmp -------------------------------------------------------------------------------- /SRResNet/result/woman_GT_SRGAN_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/woman_GT_SRGAN_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/woman_GT_SRResNet_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/woman_GT_SRResNet_x4.bmp -------------------------------------------------------------------------------- /SRResNet/result/woman_GT_bicubic_x4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/result/woman_GT_bicubic_x4.bmp -------------------------------------------------------------------------------- /SRResNet/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/script.py -------------------------------------------------------------------------------- /SRResNet/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/test.py -------------------------------------------------------------------------------- /SRResNet/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/train.py -------------------------------------------------------------------------------- /SRResNet/train2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/train2.py -------------------------------------------------------------------------------- /SRResNet/train_SRGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/train_SRGAN.py -------------------------------------------------------------------------------- /SRResNet/train_SRGAN2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/train_SRGAN2.py -------------------------------------------------------------------------------- /SRResNet/train_SRGAN_WGAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/train_SRGAN_WGAN.py -------------------------------------------------------------------------------- /SRResNet/train_SRGAN_iter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SRResNet/train_SRGAN_iter.py -------------------------------------------------------------------------------- /SwinIR/swinir_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SwinIR/swinir_model.py -------------------------------------------------------------------------------- /SwinIR/test_classical_swinir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SwinIR/test_classical_swinir.py -------------------------------------------------------------------------------- /SwinIR/test_swinir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SwinIR/test_swinir.py -------------------------------------------------------------------------------- /SwinIR/test_swinir_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/SwinIR/test_swinir_metrics.py -------------------------------------------------------------------------------- /ViewLoss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/ViewLoss.py -------------------------------------------------------------------------------- /create_lmdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/create_lmdb.py -------------------------------------------------------------------------------- /csv2visdom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/csv2visdom.py -------------------------------------------------------------------------------- /data_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/data_aug.py -------------------------------------------------------------------------------- /datasets/Set14/baboon.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/baboon.bmp -------------------------------------------------------------------------------- /datasets/Set14/barbara.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/barbara.bmp -------------------------------------------------------------------------------- /datasets/Set14/bridge.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/bridge.bmp -------------------------------------------------------------------------------- /datasets/Set14/coastguard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/coastguard.bmp -------------------------------------------------------------------------------- /datasets/Set14/comic.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/comic.bmp -------------------------------------------------------------------------------- /datasets/Set14/face.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/face.bmp -------------------------------------------------------------------------------- /datasets/Set14/flowers.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/flowers.bmp -------------------------------------------------------------------------------- /datasets/Set14/foreman.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/foreman.bmp -------------------------------------------------------------------------------- /datasets/Set14/lenna.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/lenna.bmp -------------------------------------------------------------------------------- /datasets/Set14/man.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/man.bmp -------------------------------------------------------------------------------- /datasets/Set14/monarch.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/monarch.bmp -------------------------------------------------------------------------------- /datasets/Set14/pepper.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/pepper.bmp -------------------------------------------------------------------------------- /datasets/Set14/ppt3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/ppt3.bmp -------------------------------------------------------------------------------- /datasets/Set14/zebra.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set14/zebra.bmp -------------------------------------------------------------------------------- /datasets/Set5/baby_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set5/baby_GT.bmp -------------------------------------------------------------------------------- /datasets/Set5/bird_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set5/bird_GT.bmp -------------------------------------------------------------------------------- /datasets/Set5/butterfly_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set5/butterfly_GT.bmp -------------------------------------------------------------------------------- /datasets/Set5/head_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set5/head_GT.bmp -------------------------------------------------------------------------------- /datasets/Set5/woman_GT.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/Set5/woman_GT.bmp -------------------------------------------------------------------------------- /datasets/T91/t1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t1.png -------------------------------------------------------------------------------- /datasets/T91/t10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t10.png -------------------------------------------------------------------------------- /datasets/T91/t11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t11.png -------------------------------------------------------------------------------- /datasets/T91/t12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t12.png -------------------------------------------------------------------------------- /datasets/T91/t13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t13.png -------------------------------------------------------------------------------- /datasets/T91/t14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t14.png -------------------------------------------------------------------------------- /datasets/T91/t15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t15.png -------------------------------------------------------------------------------- /datasets/T91/t16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t16.png -------------------------------------------------------------------------------- /datasets/T91/t17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t17.png -------------------------------------------------------------------------------- /datasets/T91/t18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t18.png -------------------------------------------------------------------------------- /datasets/T91/t19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t19.png -------------------------------------------------------------------------------- /datasets/T91/t2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t2.png -------------------------------------------------------------------------------- /datasets/T91/t20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t20.png -------------------------------------------------------------------------------- /datasets/T91/t21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t21.png -------------------------------------------------------------------------------- /datasets/T91/t22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t22.png -------------------------------------------------------------------------------- /datasets/T91/t23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t23.png -------------------------------------------------------------------------------- /datasets/T91/t24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t24.png -------------------------------------------------------------------------------- /datasets/T91/t25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t25.png -------------------------------------------------------------------------------- /datasets/T91/t26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t26.png -------------------------------------------------------------------------------- /datasets/T91/t27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t27.png -------------------------------------------------------------------------------- /datasets/T91/t28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t28.png -------------------------------------------------------------------------------- /datasets/T91/t29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t29.png -------------------------------------------------------------------------------- /datasets/T91/t3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t3.png -------------------------------------------------------------------------------- /datasets/T91/t30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t30.png -------------------------------------------------------------------------------- /datasets/T91/t31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t31.png -------------------------------------------------------------------------------- /datasets/T91/t32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t32.png -------------------------------------------------------------------------------- /datasets/T91/t33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t33.png -------------------------------------------------------------------------------- /datasets/T91/t34.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t34.png -------------------------------------------------------------------------------- /datasets/T91/t35.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t35.png -------------------------------------------------------------------------------- /datasets/T91/t36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t36.png -------------------------------------------------------------------------------- /datasets/T91/t37.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t37.png -------------------------------------------------------------------------------- /datasets/T91/t38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t38.png -------------------------------------------------------------------------------- /datasets/T91/t39.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t39.png -------------------------------------------------------------------------------- /datasets/T91/t4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t4.png -------------------------------------------------------------------------------- /datasets/T91/t40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t40.png -------------------------------------------------------------------------------- /datasets/T91/t42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t42.png -------------------------------------------------------------------------------- /datasets/T91/t43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t43.png -------------------------------------------------------------------------------- /datasets/T91/t44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t44.png -------------------------------------------------------------------------------- /datasets/T91/t45.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t45.png -------------------------------------------------------------------------------- /datasets/T91/t46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t46.png -------------------------------------------------------------------------------- /datasets/T91/t47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t47.png -------------------------------------------------------------------------------- /datasets/T91/t48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t48.png -------------------------------------------------------------------------------- /datasets/T91/t49.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t49.png -------------------------------------------------------------------------------- /datasets/T91/t5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t5.png -------------------------------------------------------------------------------- /datasets/T91/t50.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t50.png -------------------------------------------------------------------------------- /datasets/T91/t51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t51.png -------------------------------------------------------------------------------- /datasets/T91/t52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t52.png -------------------------------------------------------------------------------- /datasets/T91/t53.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t53.png -------------------------------------------------------------------------------- /datasets/T91/t54.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t54.png -------------------------------------------------------------------------------- /datasets/T91/t55.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t55.png -------------------------------------------------------------------------------- /datasets/T91/t56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t56.png -------------------------------------------------------------------------------- /datasets/T91/t57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t57.png -------------------------------------------------------------------------------- /datasets/T91/t58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t58.png -------------------------------------------------------------------------------- /datasets/T91/t59.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t59.png -------------------------------------------------------------------------------- /datasets/T91/t6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t6.png -------------------------------------------------------------------------------- /datasets/T91/t60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t60.png -------------------------------------------------------------------------------- /datasets/T91/t61.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t61.png -------------------------------------------------------------------------------- /datasets/T91/t62.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t62.png -------------------------------------------------------------------------------- /datasets/T91/t63.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t63.png -------------------------------------------------------------------------------- /datasets/T91/t64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t64.png -------------------------------------------------------------------------------- /datasets/T91/t65.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t65.png -------------------------------------------------------------------------------- /datasets/T91/t66.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t66.png -------------------------------------------------------------------------------- /datasets/T91/t7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t7.png -------------------------------------------------------------------------------- /datasets/T91/t8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t8.png -------------------------------------------------------------------------------- /datasets/T91/t9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/t9.png -------------------------------------------------------------------------------- /datasets/T91/tt1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt1.png -------------------------------------------------------------------------------- /datasets/T91/tt10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt10.png -------------------------------------------------------------------------------- /datasets/T91/tt12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt12.png -------------------------------------------------------------------------------- /datasets/T91/tt13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt13.png -------------------------------------------------------------------------------- /datasets/T91/tt14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt14.png -------------------------------------------------------------------------------- /datasets/T91/tt15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt15.png -------------------------------------------------------------------------------- /datasets/T91/tt16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt16.png -------------------------------------------------------------------------------- /datasets/T91/tt17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt17.png -------------------------------------------------------------------------------- /datasets/T91/tt18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt18.png -------------------------------------------------------------------------------- /datasets/T91/tt19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt19.png -------------------------------------------------------------------------------- /datasets/T91/tt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt2.png -------------------------------------------------------------------------------- /datasets/T91/tt20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt20.png -------------------------------------------------------------------------------- /datasets/T91/tt21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt21.png -------------------------------------------------------------------------------- /datasets/T91/tt22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt22.png -------------------------------------------------------------------------------- /datasets/T91/tt23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt23.png -------------------------------------------------------------------------------- /datasets/T91/tt24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt24.png -------------------------------------------------------------------------------- /datasets/T91/tt25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt25.png -------------------------------------------------------------------------------- /datasets/T91/tt26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt26.png -------------------------------------------------------------------------------- /datasets/T91/tt27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt27.png -------------------------------------------------------------------------------- /datasets/T91/tt3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt3.png -------------------------------------------------------------------------------- /datasets/T91/tt4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt4.png -------------------------------------------------------------------------------- /datasets/T91/tt5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt5.png -------------------------------------------------------------------------------- /datasets/T91/tt6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt6.png -------------------------------------------------------------------------------- /datasets/T91/tt7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt7.png -------------------------------------------------------------------------------- /datasets/T91/tt8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt8.png -------------------------------------------------------------------------------- /datasets/T91/tt9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/datasets/T91/tt9.png -------------------------------------------------------------------------------- /imresize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/imresize.py -------------------------------------------------------------------------------- /metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/metrics.py -------------------------------------------------------------------------------- /model_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/model_utils.py -------------------------------------------------------------------------------- /model_utils2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/model_utils2.py -------------------------------------------------------------------------------- /niqe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/niqe.py -------------------------------------------------------------------------------- /niqe_pris_params.npz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/niqe_pris_params.npz -------------------------------------------------------------------------------- /pth2csv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/pth2csv.py -------------------------------------------------------------------------------- /test_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/test_metrics.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sadisticheaven/SuperRestoration/HEAD/utils.py --------------------------------------------------------------------------------