Research
Towards a Generalizable Fusion Architecture for Multimodal Object Detection
Overview Research area: Computer vision, specifically multimodal (RGB + infrared) object detection and sensor fusion architectures. Technical level: Intermediate. The paper assumes familiarity with ob
- arXiv
- 2510.17078
- Published
- 2025-10-20
- Authors
- Jad Berjawi, Yoann Dupas, Christophe C'erin
AI summary
Overview
Research area: Computer vision, specifically multimodal (RGB + infrared) object detection and sensor fusion architectures.
Technical level: Intermediate. The paper assumes familiarity with object detection metrics (mAP@50, IoU), convolutional and attention-based networks, and Fourier-domain signal processing, though it explains its design choices in reasonably accessible terms.
Scope: The paper proposes and evaluates a single preprocessing fusion framework (FMCAF) that combines learnable frequency-domain filtering with cross-attention, and tests whether it generalizes across two very different multimodal detection datasets without dataset-specific tuning.
What This Paper Is About
Object detectors that rely only on visible-light (RGB) images fail in low light, cluttered backgrounds, and occlusion, so researchers pair RGB with infrared (IR) imagery, which captures thermal signatures that survive poor illumination. The problem is that the best way to merge these two modalities tends to depend on the dataset, and most published fusion modules are hand-tailored to one benchmark. This paper's goal is a fusion module that improves detection across different multimodal challenges without being retuned per dataset.
Key Contributions
-
FMCAF (Filtered Multi-Modal Cross Attention Fusion), a preprocessing architecture placed before a YOLOv11 detection backbone that combines a frequency-domain filtering block (Freq-Filter) with a cross-attention fusion block (MCAF).
-
A learnable mixing parameter α ∈ [0,1] that blends raw and frequency-filtered inputs (
X_blend = α·x̃ + (1−α)·X), letting the model decide during training how much spectral denoising is useful, rather than hard-replacing the raw signal. -
A cross-attention block inserted between the Inception and local attention stages of the MEFA-style attention design, enabling early intermodal feature exchange instead of self-attention only.
-
A sigmoid-gated residual global attention mechanism, where global attention over 8x8 non-overlapping regions modulates fused features in a residual manner (
F_final = F_fused + F_fused ⊙ G_global), allowing several spatial regions to be emphasized at once rather than forcing a single dominant focus as softmax would.
Main Findings
-
Fusion gain over concatenation: FMCAF outperforms standard early fusion by concatenation by +13.9% mAP@50 on VEDAI and +1.1% on LLVIP.
-
Headline mAP@50 scores (Table 1, 512x512): FMCAF reaches 76.5 on VEDAI and 95.4 on LLVIP. For comparison, RGB-only gives 62.1 / 90.2, IR-only 54.2 / 97.5, and concatenation 62.6 / 94.3.
-
Comparison to other fusion methods: YOLOFusion scores 73.3 (VEDAI) / 93.1 (LLVIP) and SuperYOLO 72.4 / 93.2, both at 640x640 resolution and under "slightly different initial conditions." The paper includes these only as broader context, not as a controlled comparison.
-
Class-wise VEDAI results (Table 2): FMCAF improves most classes, with the largest reported increase on Van, rising from 56.6 (concatenation) to 92.7 mAP@50. Other large gains include Truck (61.1 to 93.7), Boat (38.7 to 62.8), and Car (84.3 to 93.6). The "Other" class drops from 49.9 (concatenation) to 39.6. The paper describes the trend as "consistent improvements in most classes."
-
Ablation of components (Table 3): Concat scores 94.3 (LLVIP) / 62.6 (VEDAI); Freq-Filter only 91.6 / 52.5; MEFA only 93.5 / 70.4; MCAF only 94.8 / 71.8; FMCAF 95.4 / 74.6. Frequency filtering alone is worse than concatenation on both datasets, while MCAF alone provides strong gains — the paper argues the two components are synergistic rather than redundant.
-
Note on numbers: the FMCAF VEDAI total is reported as 76.5 in Table 1 but as 74.6 in Table 3 of the provided content.
-
Initialization of α matters (Table 4): initial α = 0.01 gives 91.7 / 72.3, α = 0.2 gives 95.4 / 74.6, and α = 0.5 gives 93.5 / 70.4. An initial value of 0.2 is reported as the best balance.
-
Resolution-dependent filtering (Table 5): the average learned α on VEDAI is 0.20 at 512x512, 0.32 at 896x896, and 0.45 at 1024x1024, meaning the model relies more on filtered input as resolution (and hence high-frequency redundancy) increases.
-
Inference cost: FMCAF achieves an average latency of 50.0 ms per image (approximately 20.0 FPS) on an NVIDIA A100 GPU in FP32 with a 4-channel 512x512 input. The authors state this is below typical real-time thresholds of 30 FPS and that their implementation is not optimized for low latency.
-
Qualitative behavior: visualizations show FMCAF detecting small or partially occluded objects (boats and cars in VEDAI) missed by the concatenation baseline, and denser, more reliable pedestrian detections in low-contrast LLVIP scenes.
Methodology in Plain English
The authors insert a small preprocessing stage between the raw camera feeds and an off-the-shelf detector (YOLOv11). That stage has two halves.
First, each modality is converted into the frequency domain using a 2D Fourier transform applied channel-wise, and the amplitude spectra are averaged across channels into a single map. A lightweight encoder looks at that map and keeps only the top-k percentage of the most salient frequency components (a relative ratio, rather than the fixed K = 320 used in the earlier RSR module this is inspired by), producing a soft mask that suppresses the rest. An inverse Fourier transform brings the filtered image back to the spatial domain. Instead of replacing the original image, the filtered version is blended with the raw one using a learned weight α, so the network can decide how much denoising each sample needs.
Second, the blended RGB and IR features pass through a fusion block. A cross-attention step lets each modality attend to the other's features within local non-overlapping windows, so RGB can borrow from IR and vice versa. Local attention then highlights informative spatial regions, and the attended maps are concatenated and passed through an Inception block. A global attention step partitions the fused map into 8x8 regions, produces a per-region weight through a sigmoid, and applies it residually so it modulates rather than overwrites the fused features. The result is projected to a 3-channel fused image and handed to the detector.
Training uses 5-fold cross-validation, the AdamW optimizer, 512x512 inputs, and dataset-specific hyperparameters — 250 epochs on VEDAI and 20 on LLVIP — but, critically, no dataset-specific tuning of the fusion architecture itself. The VEDAI setup follows the protocol of Bahaduri et al., with heavy mosaic (1.0) and mixup (0.3) augmentation; LLVIP uses lighter augmentation and mixup (0.2). Evaluation is mAP@50, chosen for its suitability when alignment is imprecise or targets are small.
Why This Matters
Impact on research. Most published multimodal fusion modules are validated on one benchmark, which makes it hard to tell whether a reported gain reflects a general principle or a dataset-specific fit. This paper's claim is architectural: filtering out redundant spectral content before fusion and enabling explicit cross-modal exchange are useful regardless of the sensing scenario. The component ablation is notable because it shows frequency filtering alone hurts (52.5 on VEDAI versus 62.6 for plain concatenation), which sharpens the argument that the two mechanisms only pay off together.
Real-world applications (as framed in the paper):
- Autonomous driving, where thermal cues remain informative when visible-spectrum cameras are degraded by night or glare.
- Surveillance, where low-light and occluded conditions are the norm rather than the exception.
- Aerial monitoring, represented by the VEDAI setting of small vehicles seen from above at varying orientations and against varied backgrounds.
- Edge and embedded sensing, which the authors raise as a future direction, naming wildlife monitoring and microcontroller-class hardware such as ESP32 and STM32.
Industry relevance. The fusion module is a drop-in preprocessing stage compatible with a real-time detection backbone, and the reported 20.0 FPS in unoptimized FP32 places it within reach of deployed pipelines if latencies are improved. Because it requires no per-dataset retuning of the fusion design, it is more attractive to teams that deploy one detector across multiple sensor configurations or imaging conditions than a fusion module that must be re-engineered per deployment.
Future Directions
-
Extending beyond detection to tasks such as segmentation and classification, which the authors list as explicit next steps.
-
Accommodating more and messier modalities, including unaligned or weakly calibrated sources — cross-view medical imaging is the example given — which would test whether the approach survives when the RGB and IR inputs are not spatially registered as they are in VEDAI and LLVIP.
-
Model compression for embedded deployment. Preliminary post-training quantization showed limited success, suggesting quantization-aware training may be needed. An open question the authors pose is whether generalizable fusion architectures are inherently more amenable to low-power deployment than dataset-specialized ones.
-
Broadening the generalization evidence base. The current results cover two datasets, one aerial-vehicle and one low-light pedestrian; whether the same untuned architecture holds up on other sensor combinations and scene types is left open.
Target Audience
Researchers and engineers working on multimodal perception, sensor fusion, or robust detection under degraded imaging conditions. It is most useful to readers who already understand detection metrics and attention mechanisms, and who are deciding how to fuse heterogeneous sensor streams — particularly those who need one architecture to serve multiple deployment scenarios rather than a module tuned to a single benchmark. Readers interested in frequency-domain preprocessing as a complement to spatial attention will also find the component ablation and the α-versus-resolution analysis directly relevant.
Authors’ abstract
Multimodal object detection improves robustness in chal- lenging conditions by leveraging complementary cues from multiple sensor modalities. We introduce Filtered Multi- Modal Cross Attention Fusion (FMCAF), a preprocess- ing architecture designed to enhance the fusion of RGB and infrared (IR) inputs. FMCAF combines a frequency- domain filtering block (Freq-Filter) to suppress redun- dant spectral features with a cross-attention-based fusion module (MCAF) to improve intermodal feature sharing. Unlike approaches tailored to specific datasets, FMCAF aims for generalizability, improving performance across different multimodal challenges without requiring dataset- specific tuning. On LLVIP (low-light pedestrian detec- tion) and VEDAI (aerial vehicle detection), FMCAF outper- forms traditional fusion (concatenation), achieving +13.9% mAP@50 on VEDAI and +1.1% on LLVIP. These results support the potential of FMCAF as a flexible foundation for robust multimodal fusion in future detection pipelines.