├── .idea ├── densefuse-pytorch.iml ├── encodings.xml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── README.md ├── __pycache__ ├── args_fusion.cpython-36.pyc ├── fusion_strategy.cpython-36.pyc ├── net.cpython-36.pyc └── utils.cpython-36.pyc ├── args_fusion.py ├── fusion_strategy.py ├── images ├── IV_images.zip └── test-RGB.zip ├── models ├── densefuse_gray.model ├── densefuse_rgb.model └── loss │ └── readme.txt ├── net.py ├── pytorch_msssim ├── __init__.py └── __pycache__ │ └── __init__.cpython-36.pyc ├── test_image.py ├── train_densefuse.py └── utils.py /.idea/densefuse-pytorch.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 12 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 19 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 12 | 13 | 15 | 16 | 21 | 22 | 23 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 57 | 58 | 59 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 |