├── SRCNN ├── MSE.m ├── Readme.txt ├── SRCNN.m ├── ThinPlateSpline.m ├── Validation.m ├── compute_psnr.m ├── demo_SR.m ├── modcrop.m ├── model │ ├── 9-1-5(91 images) │ │ ├── x2.mat │ │ ├── x3.mat │ │ └── x4.mat │ ├── 9-1-5(ImageNet) │ │ └── x3.mat │ ├── 9-3-5(ImageNet) │ │ └── x3.mat │ └── 9-5-5(ImageNet) │ │ ├── x2.mat │ │ ├── x3.mat │ │ └── x4.mat ├── shave.m └── tpsInterpolation.m ├── ThinPlateSplines ├── ImageRegistrationforTPS.m ├── ThinPlateSpline.m └── tpsInterpolation.m ├── Validation.m ├── data ├── LC08_018039 │ ├── 018039.mat │ ├── LC08_018039_181120_LR.png │ ├── LC08_018039_181204_BI.png │ ├── LC08_018039_181204_DCSCN.png │ ├── LC08_018039_181204_LR.png │ ├── LC08_018039_181204_LR_64.png │ ├── LC08_018039_181204_LR_FSDAF.png │ ├── LC08_018039_181204_LR_TPS.png │ └── LC08_018039_181204_SRCNN.png ├── LC08_029030 │ ├── 029030.mat │ ├── LC08_029030_181217_LR.png │ ├── LC08_029030_190102_BI.png │ ├── LC08_029030_190102_DCSCN.png │ ├── LC08_029030_190102_LR.png │ ├── LC08_029030_190102_LR_64.png │ ├── LC08_029030_190102_LR_FSDAF.png │ ├── LC08_029030_190102_LR_TPS.png │ └── LC08_029030_190102_SRCNN.png ├── LC08_033036 │ ├── 033036.mat │ ├── LC08_033036_180912_LR.png │ ├── LC08_033036_180929_BI.png │ ├── LC08_033036_180929_DCSCN.png │ ├── LC08_033036_180929_LR.png │ ├── LC08_033036_180929_LR_64.png │ ├── LC08_033036_180929_LR_FSDAF.png │ ├── LC08_033036_180929_LR_TPS.png │ └── LC08_033036_180929_SRCNN.png ├── LC08_040035 │ ├── LC08_040035_181112_LR.png │ ├── LC08_040035_181230_BI.png │ ├── LC08_040035_181230_DCSCN.png │ ├── LC08_040035_181230_LR.png │ ├── LC08_040035_181230_LR_64.png │ ├── LC08_040035_181230_LR_FSDAF.png │ ├── LC08_040035_181230_LR_TPS.png │ └── LC08_040035_181230_SRCNN.png └── LC08_045028 │ ├── LC08_045028_180704_LR.png │ ├── LC08_045028_180731_BI.png │ ├── LC08_045028_180731_LR.png │ ├── LC08_045028_180731_LR_64.png │ ├── LC08_045028_180731_LR_64_DCSCN.png │ ├── LC08_045028_180731_LR_FSDAF.png │ ├── LC08_045028_180731_LR_TPS.png │ └── LC08_045028_180731_SRCNN.png └── fsdaf ├── Evaluate_FSDAF.m ├── FSDAF_script.m ├── FinalRunTrial.m ├── histest.m └── newtest.m /SRCNN/MSE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/MSE.m -------------------------------------------------------------------------------- /SRCNN/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/Readme.txt -------------------------------------------------------------------------------- /SRCNN/SRCNN.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/SRCNN.m -------------------------------------------------------------------------------- /SRCNN/ThinPlateSpline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/ThinPlateSpline.m -------------------------------------------------------------------------------- /SRCNN/Validation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/Validation.m -------------------------------------------------------------------------------- /SRCNN/compute_psnr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/compute_psnr.m -------------------------------------------------------------------------------- /SRCNN/demo_SR.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/demo_SR.m -------------------------------------------------------------------------------- /SRCNN/modcrop.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/modcrop.m -------------------------------------------------------------------------------- /SRCNN/model/9-1-5(91 images)/x2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/model/9-1-5(91 images)/x2.mat -------------------------------------------------------------------------------- /SRCNN/model/9-1-5(91 images)/x3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/model/9-1-5(91 images)/x3.mat -------------------------------------------------------------------------------- /SRCNN/model/9-1-5(91 images)/x4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/model/9-1-5(91 images)/x4.mat -------------------------------------------------------------------------------- /SRCNN/model/9-1-5(ImageNet)/x3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/model/9-1-5(ImageNet)/x3.mat -------------------------------------------------------------------------------- /SRCNN/model/9-3-5(ImageNet)/x3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/model/9-3-5(ImageNet)/x3.mat -------------------------------------------------------------------------------- /SRCNN/model/9-5-5(ImageNet)/x2.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/model/9-5-5(ImageNet)/x2.mat -------------------------------------------------------------------------------- /SRCNN/model/9-5-5(ImageNet)/x3.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/model/9-5-5(ImageNet)/x3.mat -------------------------------------------------------------------------------- /SRCNN/model/9-5-5(ImageNet)/x4.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/model/9-5-5(ImageNet)/x4.mat -------------------------------------------------------------------------------- /SRCNN/shave.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/shave.m -------------------------------------------------------------------------------- /SRCNN/tpsInterpolation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/SRCNN/tpsInterpolation.m -------------------------------------------------------------------------------- /ThinPlateSplines/ImageRegistrationforTPS.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/ThinPlateSplines/ImageRegistrationforTPS.m -------------------------------------------------------------------------------- /ThinPlateSplines/ThinPlateSpline.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/ThinPlateSplines/ThinPlateSpline.m -------------------------------------------------------------------------------- /ThinPlateSplines/tpsInterpolation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/ThinPlateSplines/tpsInterpolation.m -------------------------------------------------------------------------------- /Validation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/Validation.m -------------------------------------------------------------------------------- /data/LC08_018039/018039.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_018039/018039.mat -------------------------------------------------------------------------------- /data/LC08_018039/LC08_018039_181120_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_018039/LC08_018039_181120_LR.png -------------------------------------------------------------------------------- /data/LC08_018039/LC08_018039_181204_BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_018039/LC08_018039_181204_BI.png -------------------------------------------------------------------------------- /data/LC08_018039/LC08_018039_181204_DCSCN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_018039/LC08_018039_181204_DCSCN.png -------------------------------------------------------------------------------- /data/LC08_018039/LC08_018039_181204_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_018039/LC08_018039_181204_LR.png -------------------------------------------------------------------------------- /data/LC08_018039/LC08_018039_181204_LR_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_018039/LC08_018039_181204_LR_64.png -------------------------------------------------------------------------------- /data/LC08_018039/LC08_018039_181204_LR_FSDAF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_018039/LC08_018039_181204_LR_FSDAF.png -------------------------------------------------------------------------------- /data/LC08_018039/LC08_018039_181204_LR_TPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_018039/LC08_018039_181204_LR_TPS.png -------------------------------------------------------------------------------- /data/LC08_018039/LC08_018039_181204_SRCNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_018039/LC08_018039_181204_SRCNN.png -------------------------------------------------------------------------------- /data/LC08_029030/029030.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_029030/029030.mat -------------------------------------------------------------------------------- /data/LC08_029030/LC08_029030_181217_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_029030/LC08_029030_181217_LR.png -------------------------------------------------------------------------------- /data/LC08_029030/LC08_029030_190102_BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_029030/LC08_029030_190102_BI.png -------------------------------------------------------------------------------- /data/LC08_029030/LC08_029030_190102_DCSCN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_029030/LC08_029030_190102_DCSCN.png -------------------------------------------------------------------------------- /data/LC08_029030/LC08_029030_190102_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_029030/LC08_029030_190102_LR.png -------------------------------------------------------------------------------- /data/LC08_029030/LC08_029030_190102_LR_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_029030/LC08_029030_190102_LR_64.png -------------------------------------------------------------------------------- /data/LC08_029030/LC08_029030_190102_LR_FSDAF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_029030/LC08_029030_190102_LR_FSDAF.png -------------------------------------------------------------------------------- /data/LC08_029030/LC08_029030_190102_LR_TPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_029030/LC08_029030_190102_LR_TPS.png -------------------------------------------------------------------------------- /data/LC08_029030/LC08_029030_190102_SRCNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_029030/LC08_029030_190102_SRCNN.png -------------------------------------------------------------------------------- /data/LC08_033036/033036.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_033036/033036.mat -------------------------------------------------------------------------------- /data/LC08_033036/LC08_033036_180912_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_033036/LC08_033036_180912_LR.png -------------------------------------------------------------------------------- /data/LC08_033036/LC08_033036_180929_BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_033036/LC08_033036_180929_BI.png -------------------------------------------------------------------------------- /data/LC08_033036/LC08_033036_180929_DCSCN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_033036/LC08_033036_180929_DCSCN.png -------------------------------------------------------------------------------- /data/LC08_033036/LC08_033036_180929_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_033036/LC08_033036_180929_LR.png -------------------------------------------------------------------------------- /data/LC08_033036/LC08_033036_180929_LR_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_033036/LC08_033036_180929_LR_64.png -------------------------------------------------------------------------------- /data/LC08_033036/LC08_033036_180929_LR_FSDAF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_033036/LC08_033036_180929_LR_FSDAF.png -------------------------------------------------------------------------------- /data/LC08_033036/LC08_033036_180929_LR_TPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_033036/LC08_033036_180929_LR_TPS.png -------------------------------------------------------------------------------- /data/LC08_033036/LC08_033036_180929_SRCNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_033036/LC08_033036_180929_SRCNN.png -------------------------------------------------------------------------------- /data/LC08_040035/LC08_040035_181112_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_040035/LC08_040035_181112_LR.png -------------------------------------------------------------------------------- /data/LC08_040035/LC08_040035_181230_BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_040035/LC08_040035_181230_BI.png -------------------------------------------------------------------------------- /data/LC08_040035/LC08_040035_181230_DCSCN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_040035/LC08_040035_181230_DCSCN.png -------------------------------------------------------------------------------- /data/LC08_040035/LC08_040035_181230_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_040035/LC08_040035_181230_LR.png -------------------------------------------------------------------------------- /data/LC08_040035/LC08_040035_181230_LR_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_040035/LC08_040035_181230_LR_64.png -------------------------------------------------------------------------------- /data/LC08_040035/LC08_040035_181230_LR_FSDAF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_040035/LC08_040035_181230_LR_FSDAF.png -------------------------------------------------------------------------------- /data/LC08_040035/LC08_040035_181230_LR_TPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_040035/LC08_040035_181230_LR_TPS.png -------------------------------------------------------------------------------- /data/LC08_040035/LC08_040035_181230_SRCNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_040035/LC08_040035_181230_SRCNN.png -------------------------------------------------------------------------------- /data/LC08_045028/LC08_045028_180704_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_045028/LC08_045028_180704_LR.png -------------------------------------------------------------------------------- /data/LC08_045028/LC08_045028_180731_BI.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_045028/LC08_045028_180731_BI.png -------------------------------------------------------------------------------- /data/LC08_045028/LC08_045028_180731_LR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_045028/LC08_045028_180731_LR.png -------------------------------------------------------------------------------- /data/LC08_045028/LC08_045028_180731_LR_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_045028/LC08_045028_180731_LR_64.png -------------------------------------------------------------------------------- /data/LC08_045028/LC08_045028_180731_LR_64_DCSCN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_045028/LC08_045028_180731_LR_64_DCSCN.png -------------------------------------------------------------------------------- /data/LC08_045028/LC08_045028_180731_LR_FSDAF.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_045028/LC08_045028_180731_LR_FSDAF.png -------------------------------------------------------------------------------- /data/LC08_045028/LC08_045028_180731_LR_TPS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_045028/LC08_045028_180731_LR_TPS.png -------------------------------------------------------------------------------- /data/LC08_045028/LC08_045028_180731_SRCNN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/data/LC08_045028/LC08_045028_180731_SRCNN.png -------------------------------------------------------------------------------- /fsdaf/Evaluate_FSDAF.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/fsdaf/Evaluate_FSDAF.m -------------------------------------------------------------------------------- /fsdaf/FSDAF_script.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/fsdaf/FSDAF_script.m -------------------------------------------------------------------------------- /fsdaf/FinalRunTrial.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/fsdaf/FinalRunTrial.m -------------------------------------------------------------------------------- /fsdaf/histest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/fsdaf/histest.m -------------------------------------------------------------------------------- /fsdaf/newtest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rohit18/spatiotemporalimagefusion/HEAD/fsdaf/newtest.m --------------------------------------------------------------------------------