├── LICENSE ├── README.md ├── README.txt ├── data ├── CAVE │ └── CAVE dataset stored here.txt ├── data_label.m ├── function │ ├── CC.m │ ├── ConvC.m │ ├── ErrRelGlobAdimSyn.m │ ├── HT_y.m │ ├── H_z.m │ ├── SAM.m │ ├── SpectAngMapper.m │ ├── Unfold.m │ ├── cal_ssim.m │ ├── create_F.m │ ├── csnr.m │ ├── getrmse.m │ ├── hyperConvert2D.m │ ├── hyperConvert3D.m │ ├── im2mat.m │ ├── img_qi.m │ └── quality_assessment.m ├── mat2tif.py ├── png2mat.m ├── test │ └── Test data stored here.txt ├── train │ └── Training data stored here.txt └── truth │ └── Mat files of CAVE dataset stored here.txt ├── dataset.py ├── enhance_adaptive.m ├── enhancement ├── GetSSIMofHSI.m ├── HT_y.m ├── H_z.m ├── MDC_dis.m ├── PPlus.m ├── PPlus_s.m ├── Parameters_setting.m ├── SpectAngMapper.m ├── Sylvester.m ├── Unfold.m ├── cal_ssim.m ├── calculate_J.m ├── create_F.m ├── csnr.m ├── hyperConvert2D.m ├── hyperConvert3D.m ├── hyperErrSam.m ├── quality_assessment.m └── search_2_gss.m ├── loss.py ├── model.py ├── models ├── TSFN model parameters for the CAVE datasets stored here.txt └── ssfsr_9layers_epoch500.pkl ├── results └── Fusion results by TSFN saved here.txt ├── results_final └── Final results saved here.txt ├── save_image.py ├── test.py ├── train.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/README.md -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/README.txt -------------------------------------------------------------------------------- /data/CAVE/CAVE dataset stored here.txt: -------------------------------------------------------------------------------- 1 | CAVE dataset stored here. -------------------------------------------------------------------------------- /data/data_label.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/data_label.m -------------------------------------------------------------------------------- /data/function/CC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/CC.m -------------------------------------------------------------------------------- /data/function/ConvC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/ConvC.m -------------------------------------------------------------------------------- /data/function/ErrRelGlobAdimSyn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/ErrRelGlobAdimSyn.m -------------------------------------------------------------------------------- /data/function/HT_y.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/HT_y.m -------------------------------------------------------------------------------- /data/function/H_z.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/H_z.m -------------------------------------------------------------------------------- /data/function/SAM.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/SAM.m -------------------------------------------------------------------------------- /data/function/SpectAngMapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/SpectAngMapper.m -------------------------------------------------------------------------------- /data/function/Unfold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/Unfold.m -------------------------------------------------------------------------------- /data/function/cal_ssim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/cal_ssim.m -------------------------------------------------------------------------------- /data/function/create_F.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/create_F.m -------------------------------------------------------------------------------- /data/function/csnr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/csnr.m -------------------------------------------------------------------------------- /data/function/getrmse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/getrmse.m -------------------------------------------------------------------------------- /data/function/hyperConvert2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/hyperConvert2D.m -------------------------------------------------------------------------------- /data/function/hyperConvert3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/hyperConvert3D.m -------------------------------------------------------------------------------- /data/function/im2mat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/im2mat.m -------------------------------------------------------------------------------- /data/function/img_qi.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/img_qi.m -------------------------------------------------------------------------------- /data/function/quality_assessment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/function/quality_assessment.m -------------------------------------------------------------------------------- /data/mat2tif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/mat2tif.py -------------------------------------------------------------------------------- /data/png2mat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/data/png2mat.m -------------------------------------------------------------------------------- /data/test/Test data stored here.txt: -------------------------------------------------------------------------------- 1 | Test data stored here. 2 | -------------------------------------------------------------------------------- /data/train/Training data stored here.txt: -------------------------------------------------------------------------------- 1 | Training data stored here. 2 | -------------------------------------------------------------------------------- /data/truth/Mat files of CAVE dataset stored here.txt: -------------------------------------------------------------------------------- 1 | Mat files of CAVE dataset stored here. 2 | -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/dataset.py -------------------------------------------------------------------------------- /enhance_adaptive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhance_adaptive.m -------------------------------------------------------------------------------- /enhancement/GetSSIMofHSI.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/GetSSIMofHSI.m -------------------------------------------------------------------------------- /enhancement/HT_y.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/HT_y.m -------------------------------------------------------------------------------- /enhancement/H_z.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/H_z.m -------------------------------------------------------------------------------- /enhancement/MDC_dis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/MDC_dis.m -------------------------------------------------------------------------------- /enhancement/PPlus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/PPlus.m -------------------------------------------------------------------------------- /enhancement/PPlus_s.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/PPlus_s.m -------------------------------------------------------------------------------- /enhancement/Parameters_setting.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/Parameters_setting.m -------------------------------------------------------------------------------- /enhancement/SpectAngMapper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/SpectAngMapper.m -------------------------------------------------------------------------------- /enhancement/Sylvester.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/Sylvester.m -------------------------------------------------------------------------------- /enhancement/Unfold.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/Unfold.m -------------------------------------------------------------------------------- /enhancement/cal_ssim.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/cal_ssim.m -------------------------------------------------------------------------------- /enhancement/calculate_J.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/calculate_J.m -------------------------------------------------------------------------------- /enhancement/create_F.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/create_F.m -------------------------------------------------------------------------------- /enhancement/csnr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/csnr.m -------------------------------------------------------------------------------- /enhancement/hyperConvert2D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/hyperConvert2D.m -------------------------------------------------------------------------------- /enhancement/hyperConvert3D.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/hyperConvert3D.m -------------------------------------------------------------------------------- /enhancement/hyperErrSam.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/hyperErrSam.m -------------------------------------------------------------------------------- /enhancement/quality_assessment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/quality_assessment.m -------------------------------------------------------------------------------- /enhancement/search_2_gss.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/enhancement/search_2_gss.m -------------------------------------------------------------------------------- /loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/loss.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/model.py -------------------------------------------------------------------------------- /models/TSFN model parameters for the CAVE datasets stored here.txt: -------------------------------------------------------------------------------- 1 | TSFN model parameters for the CAVE datasets stored here. 2 | -------------------------------------------------------------------------------- /models/ssfsr_9layers_epoch500.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/models/ssfsr_9layers_epoch500.pkl -------------------------------------------------------------------------------- /results/Fusion results by TSFN saved here.txt: -------------------------------------------------------------------------------- 1 | Fusion results by TSFN saved here. 2 | -------------------------------------------------------------------------------- /results_final/Final results saved here.txt: -------------------------------------------------------------------------------- 1 | Final results saved here. 2 | -------------------------------------------------------------------------------- /save_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/save_image.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/test.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/train.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiuheng-wang/Sylvester_TSFN_MDC_HSI_superresolution/HEAD/utils.py --------------------------------------------------------------------------------