Go to file
zjut 5847dc5771 test(sar): 更新模型并测试sar数据集
- 更新模型权重文件路径
- 修改测试数据集为仅使用sar数据集
- 更改模型名称描述
2024-11-15 17:43:21 +08:00
.idea 修改代码结构,提高可读性和可维护性;调整训练输出频率。 2024-10-09 11:35:06 +08:00
componets feat(componets): 新增多个图像处理模块 2024-11-15 09:28:49 +08:00
image Add files via upload 2024-06-05 10:48:04 +08:00
logs 添加 .idea/ 和 status.md到 .gitignore 文件,避免个人配置和状态文件被跟踪。在测试脚本中移除了不必要的打印语句。新增了测试日志和成功运行的日志文件。 2024-10-09 11:57:57 +08:00
mamba_ssm 修改代码实现,提高代码可读性和可维护性 2024-10-06 16:42:18 +08:00
models 修改代码结构,提高可读性和可维护性;调整训练输出频率。 2024-10-09 11:35:06 +08:00
test_img 修改代码结构,提高可读性和可维护性;调整训练输出频率。 2024-10-09 11:35:06 +08:00
test_result 修改代码结构,提高可读性和可维护性;调整训练输出频率。 2024-10-09 11:35:06 +08:00
utils Add files via upload 2024-06-03 19:36:29 +08:00
ConvSSM.py 修改代码实现,提高代码可读性和可维护性 2024-10-06 16:42:18 +08:00
dataprocessing.py Add files via upload 2024-06-03 19:36:29 +08:00
net_cddfuse.py 增加了INN部分的残差连接模块,修改了训练和测试代码以提高代码的可读性和可维护性。- 在train.py中添加了打印所有参数的代码,以方便检查和记录 2024-10-06 22:12:47 +08:00
net_me.py 修改代码实现,提高代码可读性和可维护性 2024-10-06 16:42:18 +08:00
net.py test(sar): 更新模型并测试sar数据集 2024-11-15 17:43:21 +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
requirement.txt 修改代码实现,提高代码可读性和可维护性 2024-10-05 20:49:35 +08:00
status.md 添加 .idea/ 和 status.md到 .gitignore 文件,避免个人配置和状态文件被跟踪。在测试脚本中移除了不必要的打印语句。新增了测试日志和成功运行的日志文件。 2024-10-09 12:04:46 +08:00
test_IVF.py test(sar): 更新模型并测试sar数据集 2024-11-15 17:43:21 +08:00
test_sar.py 模型结构 2024-10-07 15:24:33 +08:00
train.py refactor(net): 重构网络结构并移除未使用的类 2024-11-15 11:07:25 +08:00
trainExe.py 添加 .idea/ 和 status.md到 .gitignore 文件,避免个人配置和状态文件被跟踪。在测试脚本中移除了不必要的打印语句。新增了测试日志和成功运行的日志文件。 2024-10-09 12:04:46 +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}
}