1. Introduction
The proliferation of unmanned aerial vehicles (UAVs) equipped with heterogeneous imaging sensors has catalyzed transformative advances in aerial surveillance, environmental monitoring, and intelligent transportation systems [
1,
2]. Among various sensor configurations, the combination of visible-spectrum (RGB) cameras and thermal infrared (IR) sensors has garnered substantial research attention due to their inherent complementarity: RGB imagery provides rich chromatic and textural information under favorable illumination conditions, while IR imagery captures thermal radiation signatures that remain discriminative in low-light environments, adverse weather conditions, and scenarios involving camouflaged or occluded objects [
3,
4,
5]. This multimodal sensing paradigm offers unprecedented opportunities for developing robust object detection systems capable of maintaining consistent performance across the full spectrum of operational conditions encountered in real-world UAV deployments.
Despite the intuitive appeal of RGB-IR fusion, the effective integration of these heterogeneous modalities for object detection presents formidable technical challenges that existing methods have yet to adequately address. The fundamental difficulty stems from the substantial domain gap between visible and thermal imagery: RGB images encode reflectance properties governed by surface albedo and illumination geometry, whereas IR images capture emissivity patterns determined by object temperature and material thermal properties [
6,
7]. This intrinsic heterogeneity manifests in divergent statistical distributions, spatial resolution characteristics, and semantic content across modalities, rendering naive fusion strategies such as early concatenation or late decision-level combination suboptimal [
8,
9].
Contemporary approaches to RGB-IR object detection can be broadly categorized into three paradigms based on their fusion strategies. Early fusion methods [
3] concatenate multi-spectral inputs at the image level, relying on subsequent convolutional layers to implicitly learn crossmodal representations. While computationally efficient, this approach fails to preserve modality-specific characteristics and struggles with the inherent misalignment between RGB and IR feature distributions. Late fusion methods [
6] maintain separate processing streams for each modality and combine predictions at the decision level, preserving modality-specific information but sacrificing the potential for deep crossmodal interaction. Middle fusion approaches [
7,
8,
10] represent the current state-of-the-art by fusing features at intermediate network layers, enabling learned crossmodal representations while maintaining some degree of modality-specific processing. However, these methods typically employ static fusion mechanisms that cannot adapt to the varying reliability and informativeness of each modality across different spatial locations and environmental conditions.
The emergence of transformer-based detection architectures, exemplified by DETR [
11] and its efficient variants [
12,
13,
14], has opened new avenues for multimodal object detection. The self-attention mechanism inherent in transformers provides a natural framework for modeling long-range dependencies and crossmodal interactions, while the set-based prediction paradigm eliminates the need for hand-crafted components such as anchor boxes and non-maximum suppression. The Real-Time Detection Transformer (RT-DETR) [
14] has recently demonstrated that transformer-based detectors can achieve competitive speed-accuracy trade-offs through hybrid encoder designs and uncertainty-minimal query selection mechanisms. However, RT-DETR and similar architectures were designed for single-modality detection and lack specialized mechanisms for effective multimodal fusion.
From a symmetry perspective, RGB and IR modalities exhibit an intriguing duality: they share approximate symmetry in spatial geometric structures (boundaries, shapes, layouts) while demonstrating intrinsic asymmetry in imaging mechanisms, noise distributions, spectral characteristics, and salient regions. This observation suggests that effective multimodal detection is not merely about fusion, but rather about managing the tension between preserving shared structural consistency and exploiting modality-specific asymmetric differences. The key lies in achieving adaptive symmetry breaking and restoration that responds to varying scene conditions—leveraging symmetric structural information for robust detection while selectively utilizing asymmetric details for enhanced discrimination.
In this paper, we propose MFE-DETR (Multimodal Feature-Enhanced Detection Transformer), a comprehensive framework that extends the RT-DETR architecture with specialized modules designed to address the unique challenges of RGB-IR multimodal object detection from this symmetry-asymmetry perspective. Our approach is motivated by three key observations derived from systematic analysis of existing methods and the characteristics of multimodal aerial imagery.
First, we observe that RGB and IR modalities exhibit distinct frequency-domain characteristics that are inadequately exploited by existing spatial-domain fusion methods. RGB images typically contain rich high-frequency textural details arising from surface reflectance variations, while IR images often exhibit smoother intensity gradients dominated by low-frequency thermal patterns. This observation motivates our Haar wavelet decomposition stream (HWD-Stream), which performs multi-resolution frequency-domain analysis to decompose fused features into low-frequency structural components and high-frequency detail components, enabling specialized processing pathways that preserve and enhance modality-specific information.
Second, we recognize that the optimal fusion strategy varies spatially within an image and temporally across different environmental conditions. In well-illuminated daytime scenarios, RGB features may provide more discriminative information, while in nighttime or low-visibility conditions, IR features become dominant. This observation motivates our Adaptive Feature Fusion Module (AFAM), which employs learnable complementary gating mechanisms to dynamically balance modality contributions based on local feature informativeness.
Third, we identify that accurate object localization in cluttered aerial scenes requires modeling fine-grained spatial correlations that capture second-order feature interactions. Standard attention mechanisms compute first-order correlations through dot-product similarity, which may be insufficient for distinguishing objects with similar appearance but different spatial configurations. This observation motivates our Bilinear Attention-Enhanced Detection Module (BADM), which employs factorized bilinear pooling to capture higher-order feature interactions for improved localization accuracy.
Additionally, we introduce the Attention-guided Kolmogorov–Arnold Refinement Stream (AKR-Stream) as a complementary component to the HWD-Stream within our Dual-Modality Enhancement Module (DMEM). Inspired by the recently proposed Kolmogorov–Arnold networks (KANs) [
15], the AKR-Stream replaces traditional fixed activation functions with learnable spline-parameterized univariate functions, providing superior function approximation capabilities for adaptive feature refinement. The combination of frequency-domain decomposition (HWD-Stream) and adaptive nonlinear transformation (AKR-Stream) enables comprehensive enhancement of multimodal features across different network stages.
We conduct comprehensive experiments on two challenging benchmark datasets to validate the effectiveness of our approach. The DroneVehicle dataset [
5] serves as our primary evaluation benchmark, providing 28,439 aligned RGB-IR image pairs captured across diverse scenarios including urban roads, residential areas, parking lots, and highways under both daytime and nighttime conditions. Our MFE-DETR achieves 78.6%
and 57.8%
on DroneVehicle, surpassing the previous state-of-the-art RT-DETR-X by 5.3% and 3.7%, respectively. To further demonstrate the generalization capability and robustness of our feature enhancement modules, we evaluate on the VisDrone dataset [
1], a large-scale benchmark for small object detection in UAV imagery. Despite being designed primarily for multimodal detection, our approach achieves 42.8%
on VisDrone, with particularly strong performance on small objects (18.6%
), demonstrating the effectiveness of our proposed modules for general aerial object detection tasks.
The main contributions of this paper are summarized as follows:
We propose MFE-DETR, a novel detection transformer framework for RGB-IR multimodal object detection that systematically addresses the challenges of heterogeneous modality fusion through frequency-domain analysis, adaptive gating mechanisms, and higher-order feature interaction modeling.
We introduce the Dual-Modality Enhancement Module (DMEM) comprising two complementary processing streams: the HWD-Stream for multi-resolution wavelet-based feature decomposition and the AKR-Stream for Kolmogorov–Arnold network-based adaptive feature refinement, enabling comprehensive enhancement of multimodal representations.
We design the Adaptive Feature Fusion Module (AFAM) with complementary gating mechanisms that dynamically balance modality contributions based on spatial informativeness, effectively addressing the modality imbalance problem in varying environmental conditions.
We propose the Bilinear Attention-Enhanced Detection Module (BADM) that captures second-order feature interactions through factorized bilinear pooling, enabling fine-grained crossmodal correlation modeling for improved object localization.
Extensive experiments on DroneVehicle and VisDrone datasets demonstrate state-of-the-art performance, with comprehensive ablation studies providing detailed insights into the contribution of each proposed component.
Table 1 provides a unified overview of how each proposed module addresses specific challenges in multimodal aerial object detection, highlighting the complementary nature of our design choices within a coherent theoretical framework centered on managing the symmetry-asymmetry tension between modalities.
The remainder of this paper is organized as follows:
Section 2 reviews related work on object detection, multimodal fusion, wavelet transforms in deep learning, and Kolmogorov–Arnold networks.
Section 3 presents the detailed methodology of our MFE-DETR framework.
Section 4 describes the experimental setup, presents quantitative and qualitative results, and provides comprehensive ablation studies.
Section 5 discusses the implications and limitations of our approach.
Section 6 concludes the paper and outlines future research directions.
5. Discussion
The experimental results demonstrate that MFE-DETR achieves state-of-the-art performance on both DroneVehicle and VisDrone datasets, validating the effectiveness of our proposed modules for multimodal aerial object detection. In this section, we discuss the key insights and limitations of our approach.
It is important to emphasize that our three proposed modules (DMEM, AFAM, and BADM) are not independent engineering additions but rather form a unified framework addressing the symmetry-asymmetry tension in multimodal fusion. DMEM handles the frequency-domain asymmetry between modalities, AFAM manages the spatial-temporal asymmetry in modality reliability, and BADM captures the higher-order symmetric correlations for precise localization. The ablation studies in
Table 4 demonstrate that these modules provide complementary rather than redundant benefits, with the full combination achieving synergistic improvements (+7.4%
) that exceed the sum of individual contributions.
The success of DMEM can be attributed to its ability to separately process frequency-specific information from multimodal features. The HWD-Stream effectively separates low-frequency structural information (predominantly from IR imagery) from high-frequency textural details (predominantly from RGB imagery), enabling specialized enhancement pathways that preserve modality-specific characteristics. The AKR-Stream complements this by providing adaptive nonlinear transformations that can learn task-specific activation functions, offering greater flexibility than fixed activations like ReLU or GELU. The choice of Kolmogorov–Arnold network-inspired activations is motivated by their theoretical foundation in universal function approximation and their demonstrated effectiveness in learning complex nonlinear mappings, as validated by the ablation study in
Table 5.
The AFAM module addresses a fundamental challenge in multimodal fusion: the varying reliability of different modalities across spatial locations and environmental conditions. By employing complementary gating mechanisms, AFAM can dynamically suppress unreliable modality contributions while amplifying informative features. This adaptive behavior is particularly important for the DroneVehicle dataset, which contains images captured under diverse illumination conditions where the relative informativeness of RGB and IR modalities varies significantly.
Figure 10 illustrates the adaptive fusion weights learned by AFAM under different environmental conditions.
The BADM module improves localization accuracy by capturing second-order feature interactions through factorized bilinear pooling. Standard attention mechanisms compute first-order correlations that may be insufficient for distinguishing objects with similar appearance but different spatial configurations. The bilinear attention in BADM enables more discriminative feature matching, leading to improved bounding box predictions.
Despite the strong performance, our approach has several limitations that warrant future investigation, which we discuss as actionable boundary conditions for practical deployment.
Alignment Assumption. The current implementation assumes well-aligned RGB-IR image pairs, which may not always be available in practical deployments due to sensor mounting variations, temporal offsets, or parallax effects. While our AFAM can partially compensate for minor misalignments through adaptive weighting, significant geometric discrepancies would degrade fusion quality. The reliability of multimodal systems under such conditions relates to broader questions of network diagnosability and fault tolerance [
58,
59]. Future work could incorporate learnable registration modules or develop weakly-aligned fusion mechanisms that explicitly model and compensate for crossmodal geometric transformations.
Thermal Saturation and IR Noise Robustness. Our method’s performance under extreme thermal conditions (e.g., thermal saturation in high-temperature industrial environments or severe IR noise in adverse weather) remains to be thoroughly characterized. The HWD-Stream’s frequency decomposition may be sensitive to thermal artifacts that manifest as spurious high-frequency components. Developing robust preprocessing or adaptive filtering mechanisms for handling thermal saturation and sensor noise would enhance the practical applicability of our approach.
Edge Deployment Constraints. While MFE-DETR achieves real-time performance (68.4 FPS) on high-end GPUs, deployment on resource-constrained edge devices commonly used in UAV systems requires further optimization. The wavelet decomposition and bilinear attention operations, while effective, introduce computational overhead that may be prohibitive for embedded platforms. Future work should explore model compression techniques including structured pruning, knowledge distillation, and quantization-aware training to enable efficient edge deployment without significant accuracy degradation.
Future work could explore several promising directions. Extending MFE-DETR to handle temporal information from video sequences could improve detection consistency and enable tracking capabilities. Incorporating uncertainty estimation could provide confidence measures for detection outputs, which is important for safety-critical applications. Additionally, exploring self-supervised pretraining strategies for multimodal representations could reduce the reliance on large-scale annotated datasets.
6. Conclusions
In this paper, we proposed MFE-DETR, a novel detection transformer framework for RGB-IR multimodal object detection in aerial imagery. Motivated by the observation that RGB and IR modalities exhibit approximate symmetry in spatial structures while demonstrating intrinsic asymmetry in imaging characteristics, our approach addresses three fundamental challenges in multimodal fusion through three synergistic innovations: the Dual-Modality Enhancement Module (DMEM) for frequency-domain and adaptive feature enhancement, the Adaptive Feature Fusion Module (AFAM) for dynamic modality balancing, and the Bilinear Attention-Enhanced Detection Module (BADM) for second-order feature interaction modeling.
The DMEM comprises two complementary processing streams: the HWD-Stream that leverages Haar wavelet decomposition for multi-resolution frequency analysis, and the AKR-Stream that employs Kolmogorov–Arnold network-inspired learnable spline activations for adaptive nonlinear transformation. The AFAM employs complementary gating mechanisms to dynamically balance modality contributions based on spatial informativeness, effectively addressing the modality imbalance problem. The BADM captures second-order feature interactions through factorized bilinear pooling, enabling fine-grained crossmodal correlation modeling for improved localization accuracy.
Comprehensive experiments on the DroneVehicle and VisDrone datasets demonstrate that MFE-DETR achieves state-of-the-art performance. On DroneVehicle, our method achieves 78.6% and 57.8% , surpassing previous methods by significant margins. On VisDrone, MFE-DETR demonstrates superior generalization capability with 42.8% and particularly strong performance on small objects (18.6% ). Extensive ablation studies validate the contribution of each proposed component and provide insights into optimal design choices.
Our work demonstrates the potential of combining frequency-domain analysis, adaptive nonlinear transformations, and higher-order feature interactions for effective multimodal fusion in aerial object detection. We believe that the proposed techniques can be extended to other multimodal perception tasks and contribute to the development of more robust autonomous systems.