├── README.md ├── counter_flops_params.py ├── data ├── data.py └── dataset.py ├── main.py ├── model ├── CDC.py ├── base_net.py ├── dwte.py ├── modules.py ├── refine.py ├── spatial_shift.py ├── thops.py ├── utils.py └── winet.py ├── option.yml ├── py-tra ├── counter_flops_params.py ├── demo_all_methods.py ├── demo_all_methods_o.py ├── demo_deep_methods.py ├── demo_deep_methods_GPPNN.py ├── methods │ ├── Bicubic.py │ ├── Brovey.py │ ├── CNMF.py │ ├── GFPCA.py │ ├── GS.py │ ├── GSA.py │ ├── IHS.py │ ├── MTF_GLP.py │ ├── MTF_GLP_HPM.py │ ├── PCA.py │ ├── PNN.py │ ├── PanNet.py │ ├── SFIM.py │ ├── Wavelet.py │ └── __init__.py ├── metrics.py ├── metricsutil.py ├── no_ref.py ├── tra_full.py ├── utils.py └── utilsmetric.py ├── solver ├── __init__.py ├── basesolver.py ├── solver.py ├── testsolver.py └── unisolver.py ├── test.py ├── tool ├── 4rgb2cmyk.py ├── modcrop.py ├── pre_processing.py ├── real_pre_processing.py └── select_test_data.py └── utils ├── SAM_loss.py ├── __init__.py ├── config.py ├── loss_util.py ├── utils.py └── vgg.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/README.md -------------------------------------------------------------------------------- /counter_flops_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/counter_flops_params.py -------------------------------------------------------------------------------- /data/data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/data/data.py -------------------------------------------------------------------------------- /data/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/data/dataset.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/main.py -------------------------------------------------------------------------------- /model/CDC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/model/CDC.py -------------------------------------------------------------------------------- /model/base_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/model/base_net.py -------------------------------------------------------------------------------- /model/dwte.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/model/dwte.py -------------------------------------------------------------------------------- /model/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/model/modules.py -------------------------------------------------------------------------------- /model/refine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/model/refine.py -------------------------------------------------------------------------------- /model/spatial_shift.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/model/spatial_shift.py -------------------------------------------------------------------------------- /model/thops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/model/thops.py -------------------------------------------------------------------------------- /model/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/model/utils.py -------------------------------------------------------------------------------- /model/winet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/model/winet.py -------------------------------------------------------------------------------- /option.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/option.yml -------------------------------------------------------------------------------- /py-tra/counter_flops_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/counter_flops_params.py -------------------------------------------------------------------------------- /py-tra/demo_all_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/demo_all_methods.py -------------------------------------------------------------------------------- /py-tra/demo_all_methods_o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/demo_all_methods_o.py -------------------------------------------------------------------------------- /py-tra/demo_deep_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/demo_deep_methods.py -------------------------------------------------------------------------------- /py-tra/demo_deep_methods_GPPNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/demo_deep_methods_GPPNN.py -------------------------------------------------------------------------------- /py-tra/methods/Bicubic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/Bicubic.py -------------------------------------------------------------------------------- /py-tra/methods/Brovey.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/Brovey.py -------------------------------------------------------------------------------- /py-tra/methods/CNMF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/CNMF.py -------------------------------------------------------------------------------- /py-tra/methods/GFPCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/GFPCA.py -------------------------------------------------------------------------------- /py-tra/methods/GS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/GS.py -------------------------------------------------------------------------------- /py-tra/methods/GSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/GSA.py -------------------------------------------------------------------------------- /py-tra/methods/IHS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/IHS.py -------------------------------------------------------------------------------- /py-tra/methods/MTF_GLP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/MTF_GLP.py -------------------------------------------------------------------------------- /py-tra/methods/MTF_GLP_HPM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/MTF_GLP_HPM.py -------------------------------------------------------------------------------- /py-tra/methods/PCA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/PCA.py -------------------------------------------------------------------------------- /py-tra/methods/PNN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/PNN.py -------------------------------------------------------------------------------- /py-tra/methods/PanNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/PanNet.py -------------------------------------------------------------------------------- /py-tra/methods/SFIM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/SFIM.py -------------------------------------------------------------------------------- /py-tra/methods/Wavelet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/Wavelet.py -------------------------------------------------------------------------------- /py-tra/methods/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/methods/__init__.py -------------------------------------------------------------------------------- /py-tra/metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/metrics.py -------------------------------------------------------------------------------- /py-tra/metricsutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/metricsutil.py -------------------------------------------------------------------------------- /py-tra/no_ref.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/no_ref.py -------------------------------------------------------------------------------- /py-tra/tra_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/tra_full.py -------------------------------------------------------------------------------- /py-tra/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/utils.py -------------------------------------------------------------------------------- /py-tra/utilsmetric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/py-tra/utilsmetric.py -------------------------------------------------------------------------------- /solver/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /solver/basesolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/solver/basesolver.py -------------------------------------------------------------------------------- /solver/solver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/solver/solver.py -------------------------------------------------------------------------------- /solver/testsolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/solver/testsolver.py -------------------------------------------------------------------------------- /solver/unisolver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/solver/unisolver.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/test.py -------------------------------------------------------------------------------- /tool/4rgb2cmyk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/tool/4rgb2cmyk.py -------------------------------------------------------------------------------- /tool/modcrop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/tool/modcrop.py -------------------------------------------------------------------------------- /tool/pre_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/tool/pre_processing.py -------------------------------------------------------------------------------- /tool/real_pre_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/tool/real_pre_processing.py -------------------------------------------------------------------------------- /tool/select_test_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/tool/select_test_data.py -------------------------------------------------------------------------------- /utils/SAM_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/utils/SAM_loss.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/loss_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/utils/loss_util.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexhe101/WINet/HEAD/utils/vgg.py --------------------------------------------------------------------------------