REVIEW 4 major objections 4 minor 39 references
Deep Multimodal Fusion Detection through Spatial Mask and Channel Fusion
T0 review · 4 major / 4 minor · reviewed 2026-08-04 · deepseek-v4-flash
Pith's one-line read The paper claims that splitting visible-infrared fusion into a training-time spatial exchange and an inference-time channel competition yields the best reported detection results across five benchmarks.
desk verdict Plausible fusion design and clean ablations, but the reported SOTA margins are internally inconsistent—particularly on VEDAI and DroneVehicle—so the empirical claims need correction before they are trusted. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The load-bearing object is ADCR's shared Spatial-Channel Attention (CSA), which produces per-channel and per-pixel confidence masks for both modalities under identical weights and normalization. The authors claim this makes the visible and infrared confidence scores comparable, so the discrepancy between them is an information-content measure. On that foundation, SME and LCC are the two levers: SME computes a Semantic Cosine Distance between block-aggregated spatial masks to choose where to swap features during training; LCC converts the channel discrepancy into a hard per-channel routing decision, using the Adaptive Boundary Proxy, an Entmax-inspired convex interpolation, only to give the d
What would settle it
Run the identical ADCR pipeline but replace the shared CSA with two independent attention projections, one per modality, keeping all other hyperparameters fixed. If the DroneVehicle margin over the next-best method, or the LCC ablation gain on FLIR, shrinks substantially, then the comparability of the attention weights, not the competition mechanism, is the source of the reported improvement.
Extended reading notes
Core claim
At the core of the paper is the claim that the failure of existing RGB-infrared fusion in asymmetric conditions is an optimization conflict, not a capacity problem. The same function cannot softly average two healthy modalities and also hard-gate a corrupted one, so the paper decouples these duties. SME is a training-only augmentation that computes a block-level exchange score from the product of a spatial-attention gap and a semantic cosine distance, selects top-K blocks, and Bernoulli-samples which blocks to swap between branches; this keeps the backbone from over-specializing to one modality. LCC is an inference-time channel router: using a shared Spatial-Channel Attention, it takes the p
Load-bearing premise
The load-bearing premise is that the shared Spatial-Channel Attention makes visible and infrared confidence scores directly comparable, so the per-channel discrepancy reflects information content rather than photometric differences; if that fails, LCC's hard channel choices could be driven by arbitrary sensor bias.
Editorial extensions
If this is right
- If ADCR's central claim is right, dual-backbone detection can be made more reliable under modality imbalance without extra loss functions: SME adds no parameters and no inference cost.
- Hard per-channel routing with sparse gradients can beat soft weighted averaging when one modality is degraded; the largest reported margins are on aerial and misaligned data.
- Fusion design splits into two independent subproblems—where to complement (spatial) and how to aggregate (channel)—which are optimized separately, potentially simplifying future fusion architectures.
- The framework is plug-and-play for existing dual-branch detectors; the paper reports roughly 1.09M added parameters and 21 GFLOPs at the deepest feature stage.
- The learnable stiffness parameter for each channel adapts to dataset asymmetry, producing more decisive suppression on FLIR than on VEDAI, which suggests the router learns a dataset-specific policy rather than a fixed one.
Reading between the lines
- We infer the same decoupling principle should transfer to other heterogeneous sensor pairs, such as depth-camera, LiDAR-camera, or polarization, and to video where modality quality fluctuates over time; the paper does not test these settings.
- The paper itself notes in its visualization section that SME sometimes redistributes modality-specific noise between branches rather than suppressing it; we infer that this trade-off is dataset-dependent and worth measuring explicitly.
- The sensitivity peak at p=0.6 for the Bernoulli sampling probability hints at an optimal mixing dose; we infer that an adaptive, per-block probability governed by the exchange score could improve on the fixed schedule, though the paper does not run that experiment.
- We infer that the shared-CSA comparability premise is the part to stress-test first, because the paper's ablation does not isolate it; a control with non-shared attention projections would clarify whether LCC's gains come from the selection mechanism or from the shared projection.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The paper proposes Attention-Driven Complementarity Resampling (ADCR), a training-inference decoupled fusion framework for visible-infrared object detection. During training, a Semantic Mask Exchange (SME) module swaps spatial blocks between modality branches based on a semantic cosine distance computed from shared spatial-channel attention weights. During inference, a Learnable Channel Competition (LCC) module selects, per channel, the modality with higher attention-derived confidence, using a straight-through estimator with an adaptive boundary proxy for differentiability. Experiments are reported on LLVIP, M3FD, FLIR, VEDAI, and DroneVehicle, with ablations on FLIR and sensitivity analysis of the Bernoulli sampling probability. The central claim is that ADCR outperforms existing fusion methods on all five benchmarks, with the largest margins on DroneVehicle.
Significance. The conceptual separation of training-time spatial augmentation from inference-time channel arbitration is a reasonable and potentially useful direction, and the reported ablations indicate that both SME and LCC contribute positively. The efficiency analysis showing that LCC adds only 0.001M parameters is valuable. The paper also states that source code is provided in the supplementary material, which is a strength for reproducibility. However, the empirical claims are undermined by internal inconsistencies in the reported tables, and the key theoretical assumption about cross-modal comparability of attention weights is asserted without direct evidence. If corrected and verified, the framework could be a solid contribution, but in its current form the headline results are not reliable.
major comments (4)
- [§4.1, Table 1] The claim that on VEDAI 'ADCR surpasses all evaluated multi-modal fusion methods' is contradicted by the table itself. multimodal DINO is reported at 83.6 mAP50 / 53.8 mAP95, while ADCR (CSPDarknet53-v8) reaches 82.7 / 49.5 and ADCR (v5) reaches 81.9 / 50.2. Both ADCR variants are worse than DINO on both metrics. Please correct the text or the table and re-assess the 'all five benchmarks' statement.
- [§4.1, Table 2] The DroneVehicle margins '4.9% and 8.5 points' mix two backbone variants. The sentence states 'ADCR achieves 84.1% mAP50 and 64.5 mAP95', but 84.1 is from the v8 row and 64.5 is from the v5 row. Against the best fusion competitor CMAFF (82.0/57.6), the margins are at most 2.4/6.9 (v5) or 2.1/6.7 (v8). Against Fusion-Mamba v8 (79.2/56.0), the margins are 5.2/8.5 (v5) or 4.9/8.3 (v8). Please report margins within a single configuration and avoid cherry-picking across rows.
- [§3, Eqs. (3)-(4)] The Bernoulli sampling in Eq. (4) uses s_{i,j} as a probability, but s_{i,j} is defined as a product of a normalized gap (bounded by 1) and a cosine-distance term. If the block features are not guaranteed nonnegative, the cosine distance can exceed 1, making s_{i,j} > 1 and thus an invalid Bernoulli parameter. Even under nonnegative features, the text's description of 'orthogonality' implying distance 1 omits the opposite-vector case (distance 2). Please clarify the bounds and any clamping/normalization used in the actual implementation.
- [§3, CSA comparability] The load-bearing premise that shared convolutional weights make W_vis and W_ir 'purely content-driven' comparable is asserted but not experimentally isolated. Since LCC's hard channel selection depends entirely on the sign of Δc, please provide evidence for this assumption: e.g., compare a shared-CSA variant against separate CSAs, or show that Δc correlates with measured per-modality image degradation. Without such evidence, the mechanism underlying LCC remains a plausible heuristic rather than a validated principle.
minor comments (4)
- [§4.2, Table 3 vs text] The text says removing LCC and using ConcatConv 'decreases the performance to 77.7% in mAP50', but Table 3 reports 77.5. Please harmonize the numbers.
- [§4.1, Implementation] The phrase 'untrained CSPdarknet' is ambiguous. If the backbone is trained from scratch, say so; if it is pretrained, specify the initialization. Also, no random seeds or error bars are reported; given that some reported gains are below one point (e.g., LLVIP mAP95, M3FD mAP50 vs Fusion-Mamba v8), a single-run comparison is insufficient to support the claimed advantages.
- [§4.3, Fig. 4] The sensitivity analysis plots would benefit from error bars or repeated runs, especially because the text acknowledges 'minor localized fluctuations' at adjacent values of p. The conclusion that the peak at p=0.6 is robust is hard to evaluate from single curves.
- [General] Some references are incomplete or inconsistently formatted (e.g., [29], [35]); please check the reference list against the publisher's style.
Circularity Check
No circular derivation; the ADCR pipeline is a learned routing mechanism evaluated against external benchmarks.
full rationale
The paper's derivation chain is not circular. The proposed modules (SME and LCC) are defined directly from the shared CSA attention weights W, which are themselves trained end-to-end with the detection loss. LCC routes each channel by the sign of Δc = W_vis,ch − W_ir,ch; this is a learned arbitration rule, not a fitted quantity that is later reported as a prediction. The channel weights are not fit to the reported benchmark numbers and then renamed as a 'prediction' — they are internal parameters of the model, and the central empirical claim (ADCR improves mAP on five benchmarks) is validated against external baselines that are not derived from the paper's own equations. No load-bearing step reduces by construction to its own input: SME's exchange scores are computed from the same attention maps, but that is an architectural design choice (attention-guided augmentation), not a logical circularity. The paper invokes no uniqueness theorem and contains no self-citations by the present authors; the cited prior work (CutMix, Entmax, STE, etc.) provides independent methodological components. The internal inconsistencies in the reported VEDAI and DroneVehicle comparisons (e.g., Table 1 showing multimodal DINO at 83.6 mAP50 vs ADCR at 82.7 mAP50 on VEDAI, and the 4.9/8.5 margins mixing v8 and v5 configurations) are correctness/consistency concerns about the empirical claims, not circularity in the derivation. The assumptions about CSA making attention weights cross-modally comparable are premises, not self-referential reductions. Overall, the derivation is self-contained and externally falsifiable; no circular step is present.
Assumptions & free parameters
free parameters (5)
- Bernoulli sampling probability p =
0.6
- Spatial partition number N =
10
- top-K selection ratio =
50%
- Logit scale s =
unspecified
- alpha_c interval [1.01, 2.0] =
interval [1.01, 2.0]
assumptions (3)
- domain assumption Shared CSA parameters make W_vis and W_ir cross-modally comparable; the discrepancy is purely content-driven.
- domain assumption Attention weight W is a proxy for information density, so regions with low W are task-irrelevant or corrupted.
- domain assumption Semantic Mask Exchange during training increases downstream robustness without harming the learned representations.
Cite this review
Pith. "Pith review of Deep Multimodal Fusion Detection through Spatial Mask and Channel Fusion." pith.science (2026). https://pith.science/paper/FYIV2URU
@misc{pith2026260802092,
author = {Pith},
title = {Pith review of: Deep Multimodal Fusion Detection through Spatial Mask and Channel Fusion},
year = {2026},
howpublished = {\url{https://pith.science/paper/FYIV2URU}},
note = {Machine review of arXiv:2608.02092}
}
read the original abstract
Deep multimodal fusion for object detection has demonstrated good performance through mining modal characteristics. However, existing feature-level fusion methods mainly weigh between two modalities and unify them in a unified representation space. This can lead to overfitting or over-specialization of the statistical properties of a single modality within a dual-backbone architecture. This paper proposes an Attention-Driven Complementarity Resampling framework for robust improvement of cross-modality object detection. Based on a shared channel spatial attention mechanism, we first introduce the semantic mask exchange to actively mix the boundaries of the modalities during the training phase, forcing the backbone network to learn generalized features without relying on fixed modal labels. Then we propose a learnable channel competition to sample and aggregate features in a channel-wise and learnable way. Our experiments on multiple datasets demonstrate that the proposed method is effective and yields competitive results among existing state-of-the-art approaches. The source code is provided in the supplementary material.
Figures
Figures from the paper (3 more)
Reference graph
Works this paper leans on
-
[1]
Transfusion: Robust lidar-camera fusion for 3d object detection with transformers
Xuyang Bai, Zeyu Hu, Xinge Zhu, Qingqiu Huang, Yilun Chen, Hongbo Fu, and Chiew-Lan Tai. Transfusion: Robust lidar-camera fusion for 3d object detection with transformers. InProceedings of the IEEE/CVF conference on computer vision and pattern recognition, pages 1090–1099, 2022
2022
-
[2]
Yoshua Bengio, Nicholas Léonard, and Aaron Courville. Estimating or propagat- ing gradients through stochastic neurons for conditional computation.arXiv preprint arXiv:1308.3432, 2013
arXiv 2013
-
[3]
Yolov4: Optimal speed and accuracy of object detection.arXiv preprint arXiv:2004.10934, 2020
Alexey Bochkovskiy, Chien-Yao Wang, and Hong-Yuan Mark Liao. Yolov4: Optimal speed and accuracy of object detection.arXiv preprint arXiv:2004.10934, 2020
arXiv 2004
-
[4]
End-to-end object detection with transformers
Nicolas Carion, Francisco Massa, Gabriel Synnaeve, Nicolas Usunier, Alexander Kir- illov, and Sergey Zagoruyko. End-to-end object detection with transformers. InEuro- pean conference on computer vision, pages 213–229. Springer, 2020
2020
-
[5]
Weakly misalignment-free adaptive feature alignment for uavs-based multi- modal object detection
Chen Chen, Jiahao Qi, Xingyue Liu, Kangcheng Bin, Ruigang Fu, Xikun Hu, and Ping Zhong. Weakly misalignment-free adaptive feature alignment for uavs-based multi- modal object detection. InProceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, pages 26836–26845, 2024
2024
-
[6]
Slbaf-net: Super-lightweight bimodal adaptive fusion network for uav detection in low recognition environment.Multimedia Tools and Applications, 82(30):47773–47792, 2023
Xiaolong Cheng, Keke Geng, Ziwei Wang, Jinhu Wang, Yuxiao Sun, and Pengbo Ding. Slbaf-net: Super-lightweight bimodal adaptive fusion network for uav detection in low recognition environment.Multimedia Tools and Applications, 82(30):47773–47792, 2023. W ANG: MULTIMODAL FUSION DETECTION VIA SPA TIAL MASK AND CHANNEL FUSION15
2023
-
[7]
Fusion-mamba for cross-modality object detection.IEEE Transactions on Multimedia, 2025
Wenhao Dong, Haodong Zhu, Shaohui Lin, Xiaoyan Luo, Yunhang Shen, Guodong Guo, and Baochang Zhang. Fusion-mamba for cross-modality object detection.IEEE Transactions on Multimedia, 2025
2025
-
[8]
Qingyun Fang, Dapeng Han, and Zhaokui Wang. Cross-modality fusion transformer for multispectral object detection.arXiv preprint arXiv:2111.00273, 2021
arXiv 2021
Show all 39 references
-
[9]
Ob- ject detection in thermal spectrum for advanced driver-assistance systems (adas).Ieee Access, 9:156465–156481, 2021
Muhammad Ali Farooq, Peter Corcoran, Cosmin Rotariu, and Waseem Shariff. Ob- ject detection in thermal spectrum for advanced driver-assistance systems (adas).Ieee Access, 9:156465–156481, 2021
2021
-
[10]
Lraf-net: Long-range attention fusion network for visible–infrared object detection.IEEE Transactions on Neural Networks and Learning Systems, 35 (10):13232–13245, 2023
Haolong Fu, Shixun Wang, Puhong Duan, Changyan Xiao, Renwei Dian, Shutao Li, and Zhiyong Li. Lraf-net: Long-range attention fusion network for visible–infrared object detection.IEEE Transactions on Neural Networks and Learning Systems, 35 (10):13232–13245, 2023
2023
-
[11]
Multi- spectral pedestrian detection: Benchmark dataset and baseline
Soonmin Hwang, Jaesik Park, Namil Kim, Yukyung Choi, and In So Kweon. Multi- spectral pedestrian detection: Benchmark dataset and baseline. InProceedings of the IEEE conference on computer vision and pattern recognition, pages 1037–1045, 2015
2015
-
[12]
A review on methods and applications in multimodal deep learning
Summaira Jabeen, Xi Li, Muhammad Shoib Amin, Omar Bourahla, Songyuan Li, and Abdul Jabbar. A review on methods and applications in multimodal deep learning. ACM Trans. Multimedia Comput. Commun. Appl., 19(2s), February 2023. ISSN 1551-
2023
-
[13]
Mul- tispectral object detection enhanced by cross-modal information complementary and cosine similarity channel resampling modules
Junbo Jang, Chanyeong Park, Heegwang Kim, Jiyoon Lee, and Joonki Paik. Mul- tispectral object detection enhanced by cross-modal information complementary and cosine similarity channel resampling modules. In2025 IEEE/CVF Winter Conference on Applications of Computer Vision (WAC...
2025
-
[14]
Llvip: A visible- infrared paired dataset for low-light vision
Xinyu Jia, Chuang Zhu, Minzhen Li, Wenqi Tang, and Wenli Zhou. Llvip: A visible- infrared paired dataset for low-light vision. InProceedings of the IEEE/CVF interna- tional conference on computer vision, pages 3496–3504, 2021
2021
-
[15]
Chenchen Jiang, Huazhong Ren, Hong Yang, Hongtao Huo, Pengfei Zhu, Zhaoyuan Yao, Jing Li, Min Sun, and Shihao Yang. M2fnet: Multi-modal fusion network for object detection from visible and thermal infrared images.International Journal of Applied Earth Observation and Geoinform...
2024
-
[16]
Ultralytics yolo, January 2023
Glenn Jocher, Jing Qiu, and Ayush Chaurasia. Ultralytics yolo, January 2023. URL https://github.com/ultralytics/ultralytics. AGPL-3.0 license
2023
-
[17]
ultralytics/YOLOv5: v6.0, 2021
Glenn Jocher et al. ultralytics/YOLOv5: v6.0, 2021
2021
-
[18]
Densefuse: A fusion approach to infrared and visible images
Hui Li and Xiao-Jun Wu. Densefuse: A fusion approach to infrared and visible images. IEEE transactions on image processing, 28(5):2614–2623, 2018
2018
-
[19]
Crossfuse: A novel cross attention mechanism based infrared and visible image fusion approach.Information Fusion, 103:102147, 2024
Hui Li and Xiao-Jun Wu. Crossfuse: A novel cross attention mechanism based infrared and visible image fusion approach.Information Fusion, 103:102147, 2024. 16W ANG: MULTIMODAL FUSION DETECTION VIA SPA TIAL MASK AND CHANNEL FUSION
2024
-
[20]
Chunmian Lin, Daxin Tian, Xuting Duan, Jianshan Zhou, Dezong Zhao, and Dongpu Cao. 3d-dfm: Anchor-free multimodal 3-d object detection with dynamic fusion mod- ule for autonomous driving.IEEE Transactions on Neural Networks and Learning Systems, 34(12):10812–10822, 2022
2022
-
[21]
Target-aware dual adversarial learning and a multi-scenario multi- modality benchmark to fuse infrared and visible for object detection
Jinyuan Liu, Xin Fan, Zhanbo Huang, Guanyao Wu, Risheng Liu, Wei Zhong, and Zhongxuan Luo. Target-aware dual adversarial learning and a multi-scenario multi- modality benchmark to fuse infrared and visible for object detection. InProceedings of the IEEE/CVF conference on compu...
2022
-
[22]
Infrared and visible image fusion methods and applications: A survey.Information fusion, 45:153–178, 2019
Jiayi Ma, Yong Ma, and Chang Li. Infrared and visible image fusion methods and applications: A survey.Information fusion, 45:153–178, 2019
2019
-
[23]
Swinfu- sion: Cross-domain long-range learning for general image fusion via swin transformer
Jiayi Ma, Linfeng Tang, Fan Fan, Jun Huang, Xiaoguang Mei, and Yong Ma. Swinfu- sion: Cross-domain long-range learning for general image fusion via swin transformer. IEEE/CAA Journal of Automatica Sinica, 9(7):1200–1217, 2022
2022
-
[24]
Sparse sequence-to-sequence mod- els
Ben Peters, Vlad Niculae, and André FT Martins. Sparse sequence-to-sequence mod- els. InProceedings of the 57th Annual Meeting of the Association for Computational Linguistics, pages 1504–1519, 2019
2019
-
[25]
Cross-modality attentive feature fusion for object detection in multispectral remote sensing imagery.Pattern Recognition, 130:108786, 2022
Fang Qingyun and Wang Zhaokui. Cross-modality attentive feature fusion for object detection in multispectral remote sensing imagery.Pattern Recognition, 130:108786, 2022
2022
-
[26]
Vehicle detection in aerial imagery: A small target detection benchmark.Journal of Visual Communication and Image Rep- resentation, 34:187–203, 2016
Sebastien Razakarivony and Frederic Jurie. Vehicle detection in aerial imagery: A small target detection benchmark.Journal of Visual Communication and Image Rep- resentation, 34:187–203, 2016
2016
-
[27]
Icafusion: It- erative cross-attention guided feature fusion for multispectral object detection.Pattern Recognition, 145:109913, 2024
Jifeng Shen, Yifei Chen, Yue Liu, Xin Zuo, Heng Fan, and Wankou Yang. Icafusion: It- erative cross-attention guided feature fusion for multispectral object detection.Pattern Recognition, 145:109913, 2024
2024
-
[28]
Dropout: a simple way to prevent neural networks from overfitting
Nitish Srivastava, Geoffrey Hinton, Alex Krizhevsky, Ilya Sutskever, and Ruslan Salakhutdinov. Dropout: a simple way to prevent neural networks from overfitting. The journal of machine learning research, 15(1):1929–1958, 2014
1929
-
[29]
Adaptive multimodal feature fusion with fre- quency domain gate for remote sensing object detection.Remote Sensing Letters, 15 (2):133–144, 2024
Xu Sun, Yinhui Yu, and Qing Cheng. Adaptive multimodal feature fusion with fre- quency domain gate for remote sensing object detection.Remote Sensing Letters, 15 (2):133–144, 2024
2024
-
[30]
Drone-based rgb-infrared cross- modality vehicle detection via uncertainty-aware learning.IEEE Transactions on Cir- cuits and Systems for Video Technology, 32(10):6700–6713, 2022
Yiming Sun, Bing Cao, Pengfei Zhu, and Qinghua Hu. Drone-based rgb-infrared cross- modality vehicle detection via uncertainty-aware learning.IEEE Transactions on Cir- cuits and Systems for Video Technology, 32(10):6700–6713, 2022
2022
-
[31]
Deep multimodal fusion by channel exchanging.Advances in neural infor- mation processing systems, 33:4835–4845, 2020
Yikai Wang, Wenbing Huang, Fuchun Sun, Tingyang Xu, Yu Rong, and Junzhou Huang. Deep multimodal fusion by channel exchanging.Advances in neural infor- mation processing systems, 33:4835–4845, 2020
2020
-
[32]
Cdc-yolofusion: Leveraging cross-scale dynamic convolution fusion for visible-infrared object detec- tion.IEEE Transactions on Intelligent V ehicles, 2024
Zian Wang, Xianghui Liao, Jin Yuan, You Yao, and Zhiyong Li. Cdc-yolofusion: Leveraging cross-scale dynamic convolution fusion for visible-infrared object detec- tion.IEEE Transactions on Intelligent V ehicles, 2024. W ANG: MULTIMODAL FUSION DETECTION VIA SPA TIAL MASK AND CHA...
2024
-
[33]
If-usod: Multimodal information fusion interactive feature enhancement architecture for underwater salient object detection
Genji Yuan, Jintao Song, and Jinjiang Li. If-usod: Multimodal information fusion interactive feature enhancement architecture for underwater salient object detection. Information Fusion, 117:102806, 2025
2025
-
[34]
Translation, scale and rotation: cross- modal alignment meets rgb-infrared vehicle detection
Maoxun Yuan, Yinyan Wang, and Xingxing Wei. Translation, scale and rotation: cross- modal alignment meets rgb-infrared vehicle detection. InEuropean Conference on Computer Vision, pages 509–525. Springer, 2022
2022
-
[35]
Cutmix: Regularization strategy to train strong classifiers with local- izable features
Sangdoo Yun, Dongyoon Han, Seong Joon Oh, Sanghyuk Chun, Junsuk Choe, and Youngjoon Yoo. Cutmix: Regularization strategy to train strong classifiers with local- izable features. InProceedings of the IEEE/CVF international conference on computer vision, pages 6023–6032, 2019
2019
-
[36]
Guided attentive feature fusion for multispectral pedestrian detection
Heng Zhang, Elisa Fromont, Sébastien Lefèvre, and Bruno Avignon. Guided attentive feature fusion for multispectral pedestrian detection. InProceedings of the IEEE/CVF winter conference on applications of computer vision, pages 72–80, 2021
2021
-
[37]
Weakly aligned cross-modal learning for multispectral pedestrian detection
Lu Zhang, Xiangyu Zhu, Xiangyu Chen, Xu Yang, Zhen Lei, and Zhiyong Liu. Weakly aligned cross-modal learning for multispectral pedestrian detection. InProceedings of the IEEE/CVF international conference on computer vision, pages 5127–5137, 2019
2019
-
[38]
Cddfuse: Correlation-driven dual-branch feature decom- position for multi-modality image fusion
Zixiang Zhao, Haowen Bai, Jiangshe Zhang, Yulun Zhang, Shuang Xu, Zudi Lin, Radu Timofte, and Luc Van Gool. Cddfuse: Correlation-driven dual-branch feature decom- position for multi-modality image fusion. InProceedings of the IEEE/CVF conference on computer vision and pattern ...
2023
- [6857]
Reviewed August 4, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.