Go to file
whaifree f95b13b8aa 新增测试脚本和日志记录功能
- 添加 test_shell.py脚本,实现自动测试和日志记录功能
- 新增 deployment.xml 和 iml 文件,配置项目部署和模块信息
- 添加 log_20241008_success.log 和 status.md 文件,记录测试结果和状态
- 更新 test_IVF.py,修改测试模型和输出路径
2024-10-09 11:52:46 +08:00
image Add files via upload 2024-06-05 10:48:04 +08:00
logs 新增测试脚本和日志记录功能 2024-10-09 11:52:46 +08:00
utils Add files via upload 2024-06-03 19:36:29 +08:00
.gitignore 新增测试脚本和日志记录功能 2024-10-09 11:52:46 +08:00
dataprocessing.py Add files via upload 2024-06-03 19:36:29 +08:00
net.py Update net.py 2024-06-29 10:54:33 +08:00
PFCFuse_IVF.pth Add files via upload 2024-09-19 10:31:39 +08:00
README.md Update README.md 2024-06-29 10:53:11 +08:00
test_IVF.py 新增测试脚本和日志记录功能 2024-10-09 11:52:46 +08:00
test_shell.py 新增测试脚本和日志记录功能 2024-10-09 11:52:46 +08:00
train.py Add files via upload 2024-06-03 19:36:29 +08:00

PFCFuse: A Poolformer and CNN fusion network for Infrared-Visible Image Fusion

The implementation of our paper "PFCFuse: A Poolformer and CNN fusion network for Infrared-Visible Image Fusion".

python=3.8
torch=1.12.1+cu113
scipy=1.9.3
scikit-image=0.19.2
scikit-learn=1.1.3
tqdm=4.62.0

Network Architecture:

Our PFCFuse is implemented in net.py.

Training:

Data preprocessing

Run

python dataprocessing.py

Model training

Run

python train.py

Testing:

Run

python test_IVF.py

相关工作

@inproceedings{zhao2023cddfuse,
  title={Cddfuse: Correlation-driven dual-branch feature decomposition for multi-modality image fusion},
  author={Zhao, Zixiang and Bai, Haowen and Zhang, Jiangshe and Zhang, Yulun and Xu, Shuang and Lin, Zudi and Timofte, Radu and Van Gool, Luc},
  booktitle={Proceedings of the IEEE/CVF conference on computer vision and pattern recognition},
  pages={5906--5916},
  year={2023}
}