├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── BDLFusion.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── M3FD └── Main │ ├── test.txt │ ├── train.txt │ └── val.txt ├── README.md ├── Results_seg └── MFNet_results.zip ├── architect_average2.py ├── dataset ├── VOC_dataset.py ├── VOC_dataset_Fusion.py ├── VOC_dataset_Fusion_.py ├── __init__.py └── augment.py ├── eval_detection.py ├── imgs ├── Seg.png ├── detec.png └── first.png ├── model ├── __init__.py ├── backbone │ ├── __init__.py │ └── resnet.py ├── config.py ├── fcos_fusion.py ├── fpn_neck.py ├── head.py └── loss.py ├── pytorch_ssim └── __init__.py ├── test.py ├── test_imgs ├── Infrared │ ├── 01869.png │ ├── 01952.png │ ├── 02523.png │ └── 03865.png ├── Visible │ ├── 01869.png │ ├── 01952.png │ ├── 02523.png │ └── 03865.png ├── architect_average2.py └── train.py ├── test_result ├── detection │ ├── 01869.png │ ├── 01952.png │ ├── 02523.png │ └── 03865.png └── fusion │ ├── 01869.png │ ├── 01952.png │ ├── 02523.png │ └── 03865.png ├── train.py └── util ├── MF_dataset.py ├── __init__.py ├── augmentation.py ├── util.py └── util2.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/BDLFusion.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/.idea/BDLFusion.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/LICENSE -------------------------------------------------------------------------------- /M3FD/Main/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/M3FD/Main/test.txt -------------------------------------------------------------------------------- /M3FD/Main/train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/M3FD/Main/train.txt -------------------------------------------------------------------------------- /M3FD/Main/val.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/M3FD/Main/val.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/README.md -------------------------------------------------------------------------------- /Results_seg/MFNet_results.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/Results_seg/MFNet_results.zip -------------------------------------------------------------------------------- /architect_average2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/architect_average2.py -------------------------------------------------------------------------------- /dataset/VOC_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/dataset/VOC_dataset.py -------------------------------------------------------------------------------- /dataset/VOC_dataset_Fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/dataset/VOC_dataset_Fusion.py -------------------------------------------------------------------------------- /dataset/VOC_dataset_Fusion_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/dataset/VOC_dataset_Fusion_.py -------------------------------------------------------------------------------- /dataset/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dataset/augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/dataset/augment.py -------------------------------------------------------------------------------- /eval_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/eval_detection.py -------------------------------------------------------------------------------- /imgs/Seg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/imgs/Seg.png -------------------------------------------------------------------------------- /imgs/detec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/imgs/detec.png -------------------------------------------------------------------------------- /imgs/first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/imgs/first.png -------------------------------------------------------------------------------- /model/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/backbone/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /model/backbone/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/model/backbone/resnet.py -------------------------------------------------------------------------------- /model/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/model/config.py -------------------------------------------------------------------------------- /model/fcos_fusion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/model/fcos_fusion.py -------------------------------------------------------------------------------- /model/fpn_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/model/fpn_neck.py -------------------------------------------------------------------------------- /model/head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/model/head.py -------------------------------------------------------------------------------- /model/loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/model/loss.py -------------------------------------------------------------------------------- /pytorch_ssim/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/pytorch_ssim/__init__.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test.py -------------------------------------------------------------------------------- /test_imgs/Infrared/01869.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_imgs/Infrared/01869.png -------------------------------------------------------------------------------- /test_imgs/Infrared/01952.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_imgs/Infrared/01952.png -------------------------------------------------------------------------------- /test_imgs/Infrared/02523.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_imgs/Infrared/02523.png -------------------------------------------------------------------------------- /test_imgs/Infrared/03865.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_imgs/Infrared/03865.png -------------------------------------------------------------------------------- /test_imgs/Visible/01869.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_imgs/Visible/01869.png -------------------------------------------------------------------------------- /test_imgs/Visible/01952.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_imgs/Visible/01952.png -------------------------------------------------------------------------------- /test_imgs/Visible/02523.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_imgs/Visible/02523.png -------------------------------------------------------------------------------- /test_imgs/Visible/03865.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_imgs/Visible/03865.png -------------------------------------------------------------------------------- /test_imgs/architect_average2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_imgs/architect_average2.py -------------------------------------------------------------------------------- /test_imgs/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_imgs/train.py -------------------------------------------------------------------------------- /test_result/detection/01869.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_result/detection/01869.png -------------------------------------------------------------------------------- /test_result/detection/01952.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_result/detection/01952.png -------------------------------------------------------------------------------- /test_result/detection/02523.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_result/detection/02523.png -------------------------------------------------------------------------------- /test_result/detection/03865.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_result/detection/03865.png -------------------------------------------------------------------------------- /test_result/fusion/01869.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_result/fusion/01869.png -------------------------------------------------------------------------------- /test_result/fusion/01952.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_result/fusion/01952.png -------------------------------------------------------------------------------- /test_result/fusion/02523.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_result/fusion/02523.png -------------------------------------------------------------------------------- /test_result/fusion/03865.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/test_result/fusion/03865.png -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/train.py -------------------------------------------------------------------------------- /util/MF_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/util/MF_dataset.py -------------------------------------------------------------------------------- /util/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /util/augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/util/augmentation.py -------------------------------------------------------------------------------- /util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/util/util.py -------------------------------------------------------------------------------- /util/util2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LiuZhu-CV/BDLFusion/HEAD/util/util2.py --------------------------------------------------------------------------------