├── .gitattributes ├── .gitignore ├── Generate_Data_for_Test.m ├── Generate_Data_for_Test.py ├── Generate_Data_for_Training.m ├── Generate_Data_for_Training.py ├── Generate_Data_for_inference.py ├── LICENSE ├── README.md ├── figs ├── NTIRE2023.png └── Thumbnail.jpg ├── inference.py ├── model └── SR │ ├── DFnet.py │ ├── DPT.py │ ├── DistgSSR.py │ ├── EDSR.py │ ├── EPIT.py │ ├── HLFSR.py │ ├── LFSSR.py │ ├── LFSSR_ATO.py │ ├── LFSSR_SAV.py │ ├── LFT.py │ ├── LF_DET.py │ ├── LF_IINet.py │ ├── LF_InterNet.py │ ├── MEG_Net.py │ ├── RCAN.py │ ├── VDSR.py │ ├── cal_Params.py │ └── resLF.py ├── option.py ├── test.py ├── train.py └── utils ├── imresize.py ├── utils.py └── utils_datasets.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/.gitignore -------------------------------------------------------------------------------- /Generate_Data_for_Test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/Generate_Data_for_Test.m -------------------------------------------------------------------------------- /Generate_Data_for_Test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/Generate_Data_for_Test.py -------------------------------------------------------------------------------- /Generate_Data_for_Training.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/Generate_Data_for_Training.m -------------------------------------------------------------------------------- /Generate_Data_for_Training.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/Generate_Data_for_Training.py -------------------------------------------------------------------------------- /Generate_Data_for_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/Generate_Data_for_inference.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/README.md -------------------------------------------------------------------------------- /figs/NTIRE2023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/figs/NTIRE2023.png -------------------------------------------------------------------------------- /figs/Thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/figs/Thumbnail.jpg -------------------------------------------------------------------------------- /inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/inference.py -------------------------------------------------------------------------------- /model/SR/DFnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/DFnet.py -------------------------------------------------------------------------------- /model/SR/DPT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/DPT.py -------------------------------------------------------------------------------- /model/SR/DistgSSR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/DistgSSR.py -------------------------------------------------------------------------------- /model/SR/EDSR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/EDSR.py -------------------------------------------------------------------------------- /model/SR/EPIT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/EPIT.py -------------------------------------------------------------------------------- /model/SR/HLFSR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/HLFSR.py -------------------------------------------------------------------------------- /model/SR/LFSSR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/LFSSR.py -------------------------------------------------------------------------------- /model/SR/LFSSR_ATO.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/LFSSR_ATO.py -------------------------------------------------------------------------------- /model/SR/LFSSR_SAV.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/LFSSR_SAV.py -------------------------------------------------------------------------------- /model/SR/LFT.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/LFT.py -------------------------------------------------------------------------------- /model/SR/LF_DET.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/LF_DET.py -------------------------------------------------------------------------------- /model/SR/LF_IINet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/LF_IINet.py -------------------------------------------------------------------------------- /model/SR/LF_InterNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/LF_InterNet.py -------------------------------------------------------------------------------- /model/SR/MEG_Net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/MEG_Net.py -------------------------------------------------------------------------------- /model/SR/RCAN.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/RCAN.py -------------------------------------------------------------------------------- /model/SR/VDSR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/VDSR.py -------------------------------------------------------------------------------- /model/SR/cal_Params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/cal_Params.py -------------------------------------------------------------------------------- /model/SR/resLF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/model/SR/resLF.py -------------------------------------------------------------------------------- /option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/option.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/train.py -------------------------------------------------------------------------------- /utils/imresize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/utils/imresize.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/utils/utils.py -------------------------------------------------------------------------------- /utils/utils_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZhengyuLiang24/BasicLFSR/HEAD/utils/utils_datasets.py --------------------------------------------------------------------------------