├── README.md ├── fusion_addition.py ├── fusion_attention.py ├── fusion_l1norm.py ├── generate.py ├── get-pip.py ├── main.py ├── max_fuse.py ├── models ├── mymodel.ckpt.data-00000-of-00001 ├── mymodel.ckpt.index └── mymodel.ckpt.meta ├── ops.py ├── requirements.txt ├── resnet_encoder_decoder.py ├── ssim_loss_function.py ├── testImgs ├── color_images │ ├── ct1.png │ ├── l1.tif │ ├── left1.png │ ├── lytro-1-A.jpg │ ├── lytro-1-B.jpg │ ├── lytro-3-A.jpg │ ├── lytro-3-B.jpg │ ├── mri1.png │ ├── over1.png │ ├── r1.tif │ ├── right1.png │ └── under1.png └── gray_images │ └── Crop_images │ ├── IR1.png │ ├── IR10.png │ ├── IR11.png │ ├── IR12.png │ ├── IR13.png │ ├── IR14.png │ ├── IR15.png │ ├── IR16.png │ ├── IR17.png │ ├── IR18.png │ ├── IR19.png │ ├── IR2.png │ ├── IR20.png │ ├── IR3.png │ ├── IR4.png │ ├── IR5.png │ ├── IR6.png │ ├── IR7.png │ ├── IR8.png │ ├── IR9.png │ ├── VIS1.png │ ├── VIS10.png │ ├── VIS11.png │ ├── VIS12.png │ ├── VIS13.png │ ├── VIS14.png │ ├── VIS15.png │ ├── VIS16.png │ ├── VIS17.png │ ├── VIS18.png │ ├── VIS19.png │ ├── VIS2.png │ ├── VIS20.png │ ├── VIS3.png │ ├── VIS4.png │ ├── VIS5.png │ ├── VIS6.png │ ├── VIS7.png │ ├── VIS8.png │ └── VIS9.png ├── train_recons.py ├── utils.py └── utils_resnet.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/README.md -------------------------------------------------------------------------------- /fusion_addition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/fusion_addition.py -------------------------------------------------------------------------------- /fusion_attention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/fusion_attention.py -------------------------------------------------------------------------------- /fusion_l1norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/fusion_l1norm.py -------------------------------------------------------------------------------- /generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/generate.py -------------------------------------------------------------------------------- /get-pip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/get-pip.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/main.py -------------------------------------------------------------------------------- /max_fuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/max_fuse.py -------------------------------------------------------------------------------- /models/mymodel.ckpt.data-00000-of-00001: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/models/mymodel.ckpt.data-00000-of-00001 -------------------------------------------------------------------------------- /models/mymodel.ckpt.index: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/models/mymodel.ckpt.index -------------------------------------------------------------------------------- /models/mymodel.ckpt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/models/mymodel.ckpt.meta -------------------------------------------------------------------------------- /ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/ops.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/requirements.txt -------------------------------------------------------------------------------- /resnet_encoder_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/resnet_encoder_decoder.py -------------------------------------------------------------------------------- /ssim_loss_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/ssim_loss_function.py -------------------------------------------------------------------------------- /testImgs/color_images/ct1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/color_images/ct1.png -------------------------------------------------------------------------------- /testImgs/color_images/l1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/color_images/l1.tif -------------------------------------------------------------------------------- /testImgs/color_images/left1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/color_images/left1.png -------------------------------------------------------------------------------- /testImgs/color_images/lytro-1-A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/color_images/lytro-1-A.jpg -------------------------------------------------------------------------------- /testImgs/color_images/lytro-1-B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/color_images/lytro-1-B.jpg -------------------------------------------------------------------------------- /testImgs/color_images/lytro-3-A.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/color_images/lytro-3-A.jpg -------------------------------------------------------------------------------- /testImgs/color_images/lytro-3-B.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/color_images/lytro-3-B.jpg -------------------------------------------------------------------------------- /testImgs/color_images/mri1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/color_images/mri1.png -------------------------------------------------------------------------------- /testImgs/color_images/over1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/color_images/over1.png -------------------------------------------------------------------------------- /testImgs/color_images/r1.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/color_images/r1.tif -------------------------------------------------------------------------------- /testImgs/color_images/right1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/color_images/right1.png -------------------------------------------------------------------------------- /testImgs/color_images/under1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/color_images/under1.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR1.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR10.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR11.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR12.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR13.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR14.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR15.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR16.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR17.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR18.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR19.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR2.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR20.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR3.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR4.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR5.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR6.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR7.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR8.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/IR9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/IR9.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS1.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS10.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS11.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS12.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS13.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS14.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS15.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS16.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS17.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS18.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS19.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS2.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS20.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS3.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS4.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS5.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS6.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS7.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS8.png -------------------------------------------------------------------------------- /testImgs/gray_images/Crop_images/VIS9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/testImgs/gray_images/Crop_images/VIS9.png -------------------------------------------------------------------------------- /train_recons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/train_recons.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/utils.py -------------------------------------------------------------------------------- /utils_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jianlihua123/SEDRFuse/HEAD/utils_resnet.py --------------------------------------------------------------------------------