Next Article in Journal
Joint Optimization of Time Slot and Power Allocation in Underwater Acoustic Communication Networks
Next Article in Special Issue
A Contrastive Dual-Task Framework for Few-Shot Traffic Classification in IoT Networks
Previous Article in Journal
Distortion-Aware Routing and Parameter-Shared MoE for Multispectral Remote Sensing Super-Resolution
Previous Article in Special Issue
A Load-Balancing-Aware Learning Framework for Collaborative UAV-MEC Computation Offloading
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

HMF-DEIM: High-Fidelity Multi-Domain Fusion Transformer for UAV Small Object Detection

College of International Studies, National University of Defense Technology, Nanjing 210012, China
*
Author to whom correspondence should be addressed.
These authors contributed equally to this work.
Sensors 2026, 26(7), 2187; https://doi.org/10.3390/s26072187
Submission received: 19 January 2026 / Revised: 27 March 2026 / Accepted: 28 March 2026 / Published: 1 April 2026
(This article belongs to the Special Issue Communications and Networking Based on Artificial Intelligence)

Abstract

Unmanned aerial vehicle (UAV) small object detection faces critical challenges including irreversible geometric detail loss during multi-level downsampling, cross-scale feature distortion from interpolation blur and aliasing, and limited long-range dependency modeling due to constrained receptive fields. To address these limitations, we propose HMF-DEIM (High-Fidelity Multi-Domain Fusion Transformer for UAV Small Object Detection), an end-to-end architecture tailored for UAV small object detection. First, we design a lightweight hierarchical differentiation backbone that removes redundant deepest-layer features (P5) to prevent tiny object information loss, employing Multi-Domain Feature Blending (MDFB) in shallow layers for geometric detail preservation and a Hierarchical Attention-guided Feature Modulation Block (HAFMB) in deep layers for global semantic modeling. Second, we develop a full-chain high-fidelity feature transformation framework comprising Channel-Adaptive Shift Upsampling (CASU) for interpolation-free resolution recovery, Multi-scale Context Alignment Fusion (MCAF) for bridging deep–shallow semantic gaps via bidirectional gating, and Diversified Residual Frequency-aware Downsampling (DRFD) for aliasing suppression through a three-branch parallel architecture. Finally, we devise the FocusFeature module that aligns multi-scale features to a unified scale and employs parallel multi-scale large-kernel depthwise convolutions to capture cross-scale long-range dependencies, generating dual-scale (P3/P4) features balancing details and semantics. Experiments demonstrate that HMF-DEIM outperforms DEIM on VisDrone2019 test by 0.405 mAP50 (+2.1%) and 0.235 mAP50–95 (+1.6%), with a remarkable 21.3% relative improvement in APs for tiny objects, while maintaining real-time inference (465 FPS with TensorRT FP16) on an NVIDIA A100 GPU with only 11.87M parameters and 34.1 GFLOPs. Further validation on AI-TOD v2 and DOTA v1.5 datasets confirms robust generalization across diverse aerial scenarios, making it a practical solution for resource-constrained UAV applications.

1. Introduction

Unmanned Aerial Vehicles (UAVs) have evolved from simple flight platforms into intelligent systems equipped with onboard edge computing capabilities. These systems can process complex algorithms in real time without continuous ground station communication, enabling critical applications such as traffic monitoring, disaster relief, tactical reconnaissance, and automated surveillance [1,2,3,4]. However, UAV vision systems face severe challenges in dense urban environments as follows: object detection must simultaneously achieve high accuracy and real-time performance. The unique characteristics of aerial imagery—including extreme scale variations, complex backgrounds, and diverse viewpoints—pose fundamental technical barriers to conventional computer vision frameworks.
In complex UAV aerial scenarios, small object detection faces multiple technical challenges. Traditional convolutional neural networks often cause irreversible loss of small object geometric details during multiple downsampling operations, while fixed receptive field designs cannot simultaneously accommodate feature extraction for objects of different scales [5]. Although attention mechanisms show potential in global modeling, their effectiveness in shallow network layers is limited [6,7], and conventional feature maps often carry significant redundant information, leading to higher computational overhead. Particularly, the P5 layer (stride 32) of standard backbone networks causes complete loss of tiny object information [8]. To address this feature degradation problem, we design a lightweight backbone network specifically tailored for UAV scenarios, adopting a hierarchical differentiation strategy and removing redundant deepest-layer features. In shallow layers (P2/P3), the Multi-Domain Feature Blending (MDFB) module maximizes feature reuse through dense connections and split–merge strategies; in deep layers (P4), the Hierarchical Attention-guided Feature Modulation Block (HAFMB) employs channel splitting strategies, utilizing single-head self-attention mechanisms to enhance global semantic modeling.
Meanwhile, due to dramatic variations in flight altitude and viewing angles, objects of the same category may exhibit vastly different scale distributions [9,10], posing severe challenges for cross-scale feature transformation. Existing feature pyramids employ simple interpolation methods during upsampling stages, which cannot reconstruct sub-pixel level details; during downsampling stages, aliasing effects caused by strided convolutions convert high-frequency details into low-frequency noise [11,12]. To address this information distortion problem, we propose a high-fidelity feature transformation framework encompassing both upsampling and downsampling processes. In the upsampling stage, Channel-Adaptive Shift Upsampling (CASU), employs a channel cyclic shift mechanism to avoid interpolation blur; subsequently, the Multi-scale Context Alignment Fusion (MCAF) module utilizes bidirectional gating mechanisms to dynamically coordinate deep and shallow layer features, ensuring semantic alignment; in the downsampling stage, Diversified Residual Frequency-aware Downsampling (DRFD) adopts a three-branch parallel architecture to suppress high-frequency aliasing effects from multiple dimensions.
More critically, the effective receptive field of traditional convolutional networks is far smaller than the theoretical value, lacking sufficient long-range dependency modeling capability for tiny objects [5,13,14], which constitutes a fundamental bottleneck for contextual reasoning. To overcome this limitation, we develop the FocusFeature module as the core aggregation node. This module first aligns multi-scale features to a unified scale, and it then employs parallel multi-scale large-kernel depthwise convolutions to significantly expand the effective receptive field, collaboratively capturing cross-scale long-range dependencies. The module ultimately generates semantically rich P3 and P4 features. This dual-scale feature generation strategy (P3/P4) fully leverages the high-resolution advantage of P3 and the semantic abstraction capability of P4, significantly reducing decoder computational complexity while maintaining detection accuracy.
From the perspective of detection framework evolution, traditional methods are mainly divided into CNN-based single-stage detectors (such as RetinaNet [15] and the YOLO series [16,17,18]) and two-stage detectors (such as Faster R-CNN [19]). Although these CNN methods perform well in general scenarios, they face significant challenges in UAV small object detection. In recent years, Transformer-based detectors have demonstrated new possibilities. DETR [20] redefined object detection as a set prediction problem by introducing self-attention mechanisms [21], eliminating traditional post-processing steps. RT-DETR [22] achieved real-time detection on this foundation. Recently, DEIM [23] achieved significant breakthroughs based on the DETR framework. By introducing the Dense O2O matching strategy and Matchability-Aware Loss, DEIM effectively addresses the sparse supervision problem in traditional one-to-one matching, demonstrating excellent performance on general object detection tasks. Nevertheless, regardless of whether they employ CNN or Transformer architectures, most current detectors are tailored for general-purpose applications and fail to effectively handle the distinctive challenges posed by aerial imagery, such as extreme scale variations, densely packed objects, and complex viewpoint changes.
Based on DEIM’s excellent performance in general object detection and its end-to-end training advantages, we select it as our baseline model. However, DEIM still faces numerous challenges in UAV aerial scenarios, as follows: its standard backbone network has insufficient feature representation capability when processing multi-scale small objects, the original feature fusion mechanism struggles to effectively integrate semantic and detail features from different hierarchical levels, and traditional downsampling operations easily cause loss of small object features. To resolve these problems, we propose HMF-DEIM (Hierarchical Multi-scale Fidelity Transformer), an end-to-end detection architecture specifically tailored for UAV small object detection. The core design philosophy of this architecture is reflected in the following aspects:
Hierarchical differentiation in the feature extraction stage: The lightweight backbone network removes redundant deepest-layer features, adopting a hierarchical strategy of MDFB (shallow layers) and HAFMB (deep layers), achieving progressive feature extraction from geometric details to semantic abstraction while maintaining parameter efficiency.
Full-chain fidelity in the feature transformation stage: The CASU-MCAF-DRFD framework constitutes a complete bidirectional closed loop—CASU achieves lossless upsampling through cyclic shifting, MCAF resolves the semantic gap between deep and shallow layers through gating mechanisms, and DRFD suppresses aliasing noise through a three-branch architecture, ensuring information integrity during cross-scale transfer.
Cross-scale reasoning in the feature aggregation stage: The FocusFeature module breaks through the locality limitation of convolutional networks through spatial alignment combined with parallel large-kernel convolutions, enabling the model to establish macro-level contextual associations while preserving micro-level details, and generates dual-level features balancing details and semantics for final decoding.
In summary, our main contributions are as follows:
  • Hierarchical differentiation backbone network design: We propose a lightweight backbone network specifically tailored for UAV scenarios, adopting a hierarchical differentiation strategy and removing redundant deepest-layer features to prevent small object information loss. In the shallow stage, MDFB maximizes feature reuse through dense connections and split–merge strategies, ensuring high-fidelity preservation of small object geometric features; in the deep stage, HAFMB employs a channel splitting strategy, utilizing single-head self-attention for global semantic modeling on partial channels, suppressing background noise while maintaining lightweight characteristics.
  • Full-chain high-fidelity feature transformation framework: We propose a high-fidelity feature transformation framework encompassing both upsampling and downsampling processes. In the upsampling stage, CASU employs a channel cyclic shift mechanism to avoid interpolation blur, effectively reconstructing sub-pixel level details; in the fusion stage, MCAF utilizes bidirectional gating mechanisms to achieve semantic alignment between deep and shallow layer features; in the downsampling stage, DRFD suppresses high-frequency aliasing effects, ensuring full-chain feature flow fidelity.
  • Multi-scale context-focused aggregation and dual-scale feature generation: We develop the FocusFeature module as the core aggregation node, breaking through the locality limitation of convolutional neural networks. This module first aligns multi-scale features to a unified medium resolution, and it then employs parallel multi-scale large-kernel depthwise convolutions to expand the effective receptive field, capturing cross-scale long-range dependencies, generating semantically rich medium-resolution features, and producing deep-layer features through DRFD downsampling, reducing decoder computational complexity while maintaining high-resolution detail perception.
  • End-to-end UAV detection architecture: We propose the HMF-DEIM architecture specifically suited for UAV small object detection. By removing deepest-layer features that cause tiny object information loss and by utilizing a dual-scale decoding strategy to optimize fine-grained feature distribution, we achieve an optimal trade-off between detection accuracy and inference speed. Experiments demonstrate that HMF-DEIM significantly outperforms the baseline DEIM and other state-of-the-art detectors on aerial datasets including VisDrone2019, AI-TOD-v2, and DOTA-v1.5, validating the effectiveness and generalization capability of our method.
The remainder of this paper is organized as follows: Section 2 comprehensively reviews related work, Section 3 details our proposed method, Section 4 presents experimental results, and Section 5 concludes the paper.

2. Related Work

2.1. Transformer-Based Detection Frameworks

DETR [20], proposed by Carion et al., redefined object detection as a set prediction problem, pioneering the application of Transformers in object detection and eliminating the need for hand-designed components such as RPN and NMS. DETR employs the Hungarian algorithm to achieve one-to-one (O2O) matching, assigning a unique prediction box to each object and enabling end-to-end training. However, DETR exhibits notable deficiencies in convergence speed and computational complexity. To address these issues, researchers have proposed various improvements. Deformable DETR [24] introduced deformable attention mechanisms, improving convergence efficiency and multi-scale feature processing capability through sparse spatial sampling. DN-DETR [25] accelerated training convergence through query denoising strategies, while DINO [26] further improved performance by combining improved denoising anchor boxes with contrastive denoising training. DAB-DETR [27] enhanced localization capability through dynamic anchor boxes, and Efficient DETR [28] optimized decoder initialization using dense query selection mechanisms.
Although these methods have achieved significant accuracy improvements, the increased computational complexity brought by stacked encoder–decoder architectures or additional auxiliary modules limits their real-time deployment. RT-DETR [22] first achieved real-time object detection based on the DETR framework, applying the Transformer encoder only on the deepest-layer features and integrating multi-scale information through efficient feature fusion strategies, significantly reducing computational overhead while maintaining end-to-end advantages. RT-DETRv2 [29] further adopted IoU-aware query selection strategies and improved loss functions. D-FINE [30] redefined the regression task as a fine-grained distribution optimization problem, combined with knowledge distillation techniques, surpassing YOLO series models in real-time performance.
Recently, DEIM [23] effectively addressed the sparse supervision and low-quality matching problems in O2O matching through a Dense O2O matching strategy and Matchability-Aware Loss (MAL), significantly accelerating model convergence and achieving excellent performance on general object detection tasks. However, DEIM still faces the following challenges in UAV aerial scenarios: its standard backbone network has insufficient feature representation capability when processing multi-scale objects, leading to higher miss rates for small objects; the original feature fusion mechanism has limitations in cross-scale information aggregation; and traditional downsampling operations easily cause loss of small object features. Based on these observations, we select DEIM as our baseline model and optimize the backbone network architecture, feature fusion mechanism, and cross-scale feature aggregation strategy, thereby achieving a better accuracy–speed trade-off.

2.2. Object Detection in UAV Images

Due to the nature of UAV flight, capturing images from drones presents numerous difficulties, including cluttered backgrounds, variations in viewing angles, changes in altitude, shifting lighting conditions, blur caused by motion, and partial occlusion of targets. Furthermore, the dramatic scale variations and high proportion of small objects in aerial scenarios impose higher requirements on detectors’ multi-scale feature extraction capabilities. To address these challenges, researchers have proposed solutions from the following three directions: backbone network design, feature fusion mechanisms, and downsampling strategies, corresponding to the three major challenges addressed in this paper, as follows: feature degradation, cross-scale distortion, and contextual bottlenecks.
In backbone network design, CenterNet [31] adopted a lightweight Hourglass network to preserve spatial details, CSPNet [32] enhanced feature reuse through cross-stage partial connections, and EfficientNet [33] balanced network depth, width, and resolution through compound scaling. These works demonstrate that lightweight backbones need to preserve fine-grained geometric information in shallow layers, enhance semantic abstraction in deep layers, and reduce parameter redundancy through feature reuse. CSPNet’s cross-stage connections inspired MDFB’s feature split–merge strategy, and EfficientNet’s compound scaling inspired HAFMB’s channel splitting strategy. Additionally, this paper removes deepest-layer features to focus on high-resolution modeling at the P2/P3/P4 three layers, addressing the problem of tiny objects vanishing at large-stride levels.
In feature fusion mechanisms, BiFPN [34] achieved multi-scale feature fusion through weighted bidirectional connections, ASFF [35] introduced adaptive spatial feature fusion by dynamically learning fusion weights, and NAS-FPN [36] discovered optimal feature pyramid structures using neural architecture search. These studies demonstrate that deep and shallow layer features require semantic alignment and adaptive fusion. However, existing methods mostly focus on learning fusion weights while ignoring upsampling detail loss and the deep–shallow layer semantic gap. ASFF’s adaptive fusion inspired MCAF’s gating mechanism, and BiFPN’s bidirectional connections inspired MCAF’s bidirectional interaction strategy. The CASU module in this paper transforms upsampling into spatial reorganization through channel cyclic shifting, fundamentally solving the interpolation blur problem.
In downsampling and information preservation, SPP [37] preserved multi-scale information through spatial pyramid pooling, CARAFE [38] proposed content-aware upsampling operators, and PConv [39] reduced redundant computation using partial convolutions. Zhang et al. [11] pointed out that traditional strided convolutions violate the sampling theorem and proposed anti-aliasing downsampling strategies. These works demonstrate that addressing feature aliasing from a frequency domain perspective is crucial for preserving high-frequency details. However, existing methods mostly adopt single downsampling strategies, struggling to simultaneously preserve geometric details and saliency features. The frequency domain analysis of anti-aliasing downsampling inspired DRFD’s three-branch architecture, which collaboratively maintains information integrity across the frequency domain, spatial domain, and saliency dimensions.
In recent advances, several works have continued to push the boundary of UAV small object detection. SMA-YOLO [40] improved small object sensitivity through sparse attention and multi-branch FPN design, BGF-YOLOv10 [41] introduced a lightweight architecture with an additional small object detection head for UAV perspectives, and FECI-RTDETR [42] explored lightweight RT-DETR variants for UAV infrared scenarios. Meanwhile, State Space Models (SSMs) have emerged as an alternative paradigm offering linear complexity with global modeling capability. Building upon the foundational S4 [43] and Mamba [44] architectures, Vision Mamba [45] and VMamba [46] successfully adapted SSMs for visual representation learning. In the detection domain, Mamba YOLO [47] proposed an SSM-based backbone for real-time detection. For UAV scenarios specifically, YOLOv5_mamba [48], YOLO-Mamba [49], HRMamba-YOLO [50], MV-YOLO [51], and Super Mamba [52] have explored integrating Mamba modules into YOLO-based frameworks for aerial and infrared imagery, while RemoteDet-Mamba [53] and MSDF-Mamba [54] investigated Mamba-based fusion for multi-modal aerial detection. However, most of these approaches simply insert SSM modules into existing backbones or necks without holistically redesigning the detection pipeline, and none explicitly addresses the deepest-layer feature redundancy problem that causes tiny object information loss in UAV scenarios.
Existing methods still have critical issues in UAV small object detection. General backbones do not consider the specificity of object scales in UAV scenarios, lacking fine-grained feature capture capability for small objects in shallow layers, while deepest layers cause tiny object disappearance. Traditional FPN/PAN adopts simple addition or concatenation, struggling to model cross-level semantic associations, with upsampling interpolation causing detail blur. Standard downsampling has limited spatial position preservation capability, easily losing small object boundary and texture information. Moreover, simple feature concatenation lacks spatial alignment and cross-scale contextual modeling.
In summary, existing research in lightweight backbone design, semantic-aligned fusion, and frequency-aware downsampling has laid the theoretical foundation for the HMF-DEIM architecture proposed in this paper. This paper addresses the above issues through a series of innovations as follows: the MDFB/HAFMB backbone network achieves hierarchical differentiation design while removing deepest-layer features to avoid tiny object information loss; the collaborative design of CASU and MCAF modules addresses upsampling detail loss and deep–shallow layer semantic gap problems; the DRFD three-branch architecture performs parallel processing across the frequency fidelity, spatial learning, and saliency preservation dimensions; and the FocusFeature module achieves cross-scale contextual reasoning through spatial alignment and parallel large-kernel convolutions.

3. Proposed Method

3.1. Overall Framework

Tiny object detection in UAV aerial imagery faces the dual challenges of extreme scale variations and background interference. Multiple downsampling operations in traditional convolutional networks cause irreversible loss of high-frequency details, while existing feature pyramids struggle to balance deep-layer semantics with shallow-layer geometric details when fusing multi-scale information, often introducing noise due to aliasing effects. To resolve these problems, we propose the HMF-DEIM architecture, as illustrated in Figure 1. This framework achieves optimization through the following four key designs: a lightweight backbone network based on MDFB and HAFMB, high-fidelity feature transformation covering the entire upsampling and downsampling process, cross-scale contextual aggregation based on multi-granularity large-kernel convolutions, and a decoder optimized for dual-scale features.
The overall pipeline is divided into four stages as follows: feature extraction, hybrid encoding enhancement, cross-scale focused aggregation, and distribution-aware decoding. In the feature extraction stage, we design a customized lightweight backbone network that adopts a hierarchical differentiation strategy and removes the redundant deepest layer P5. After initial convolution, the input image progressively generates the following three hierarchical features: P2 at the shallow layer with 4× downsampling, P3 at the middle layer with 8× downsampling, and P4 at the deep layer with 16× downsampling. In the shallow and middle layers, the Multi-Domain Feature Blending module is introduced to maximize inter-level feature reuse through split–merge strategies and dense connections, preventing the loss of tiny object geometric information. In the deep layer, the Hierarchical Attention-guided Feature Modulation Block is integrated, employing a channel splitting strategy where partial channels utilize self-attention for global semantic modeling while remaining channels preserve detail information, simultaneously introducing multi-scale depthwise convolutions to enhance local representation. The backbone network outputs the following three hierarchical features: F P 2 b a c k b o n e , F P 3 b a c k b o n e , and F P 4 b a c k b o n e .
In the encoding and feature enhancement stage, the Transformer encoder is applied only to F P 4 b a c k b o n e for global contextual modeling. The encoded F P 4 e n c progressively recovers spatial resolution through a top-down pathway. First, F P 4 e n c is processed through Channel-Adaptive Shift Upsampling and added to F P 3 b a c k b o n e to obtain F P 3 f u s e d . Subsequently, F P 3 f u s e d continues through Channel-Adaptive Shift Upsampling to the shallow-layer scale and undergoes gated fusion with F P 2 b a c k b o n e , dynamically coordinating fine-grained features with deep-layer semantics to resolve the semantic gap problem, generating F P 2 f i n a l .
In the feature aggregation stage, three feature streams are fed into the FocusFeature module as follows: F P 2 f i n a l carrying high-resolution details, F P 3 f u s e d representing middle layer features, and F P 4 e n c encoding semantic abstraction. This module first spatially aligns the three feature streams to the P3 scale. Specifically, F P 2 f i n a l is reduced through frequency-aware downsampling, F P 4 e n c is enlarged through Channel-Adaptive Shift Upsampling, and F P 3 f u s e d undergoes direct channel alignment. The aligned features are concatenated along the channel dimension, and parallel large-kernel depthwise convolutions with kernel sizes of 5, 7, 9, and 11 are employed to expand the effective receptive field, collaboratively capturing cross-scale long-range dependencies and outputting F P 3 f o c u s . To accommodate dual-scale decoding requirements, F P 3 f o c u s is further processed through frequency-aware downsampling to generate F P 4 f o c u s , ensuring semantic alignment while suppressing aliasing noise.
In the decoding stage, the deeply optimized F P 3 f o c u s and F P 4 f o c u s are fed into the D-FINE Transformer decoder. The dual-scale strategy offers several advantages. Removing P5 prevents complete loss of tiny object information. P3 provides fine localization capability while P4 provides semantic context, with both being complementary. Compared to three-scale schemes, computational complexity is significantly reduced to meet real-time requirements.

3.2. Lightweight Backbone Network

Standard backbone networks employ fixed receptive field convolutions, making it difficult to simultaneously accommodate shallow-layer geometric information and deep-layer semantic abstraction, while dense convolution stacking introduces redundant parameters. In particular, the P5 layer with 32× downsampling causes tiny objects to have representations smaller than one pixel in feature maps, resulting in complete information loss. For example, a small object of 16 × 16 pixels corresponds to only 0.5 × 0.5 pixels at the P5 layer, where neither geometric nor semantic information can be preserved. Therefore, we remove the P5 layer and retain the following three hierarchical features: P2 at the shallow layer with 4× downsampling, P3 at the middle layer with 8× downsampling, and P4 at the deep layer with 16× downsampling.
Our designed multi-stage backbone network adopts a hierarchical differentiation strategy. MDFB is introduced in shallow and middle layers to efficiently reuse multi-scale features and preserve geometric details, while HAFMB is deployed in the deep layer to enhance global semantic modeling, as illustrated in Figure 2. This hierarchical design fully accommodates the level-specific requirements where shallow and middle layers demand fine details while deep layers require semantic abstraction, maintaining parameter efficiency through feature reuse and channel splitting.

3.2.1. Shallow and Middle Layer Feature Extraction Module

In shallow and middle layer stages, geometric details such as the edge textures of small objects are distributed across feature maps. The MDFB module achieves multi-scale feature interaction through a feature split–merge mechanism. Given input X R C × H × W , it is first mapped to a higher dimension through 1 × 1 convolution, yielding Y R C × H × W , where C = 2 C doubles the channel capacity to provide sufficient representational bandwidth for the subsequent multi-branch processing. Subsequently, Y is decomposed into four parallel branches, each operating on the full or partial channels of Y to capture features at different granularities as follows:
Y 0 = ϕ c o n v ( 1 ) ( Y ) , Y 1 = ϕ D W 3 × 3 ( ϕ c o n v ( 2 ) ( Y ) ) , Y 2 , Y 3 = Split ( Y )
where ϕ c o n v denotes standard convolution and ϕ D W k × k denotes depthwise convolution with kernel size k that performs spatial convolution independently per channel. The four branches serve distinct and complementary roles. Branch Y 0 R C / 4 × H × W applies a standard 1 × 1 convolution to perform cross-channel feature recombination. Branch Y 1 R C / 4 × H × W sequentially applies a 1 × 1 convolution followed by a 3 × 3 depthwise convolution, extracting local spatial patterns such as edges and textures while maintaining per-channel independence. Branches Y 2 and Y 3 , each R C / 4 × H × W , are obtained by evenly splitting Y along the channel dimension, where Y 3 directly preserves original low-level geometric information as an identity shortcut, while Y 2 is forwarded for further hierarchical refinement.
To enhance representational capability, branch Y 2 is iteratively refined using InceptionDWBlock, which employs multi-scale depthwise convolution kernels such as 3 × 3 and 5 × 5 in parallel to capture multi-scale spatial patterns. Specifically, each InceptionDWBlock internally splits its input along the channel dimension into two sub-groups processed by 3 × 3 and 5 × 5 depthwise convolutions, respectively, then concatenates and fuses the outputs through a 1 × 1 pointwise convolution with a residual connection to the block input. Two InceptionDWBlocks are cascaded to progressively extract hierarchical features:
Y 4 = ϕ I n c e p t D W ( 1 ) ( Y 2 ) , Y 5 = ϕ I n c e p t D W ( 2 ) ( Y 4 )
where ϕ I n c e p t D W ( i ) denotes the i-th InceptionDWBlock. This cascaded design enables the module to capture increasingly abstract multi-scale patterns while maintaining computational efficiency. The first block ϕ I n c e p t D W ( 1 ) extracts initial multi-scale features from Y 2 , producing Y 4 R C / 4 × H × W , while the second block ϕ I n c e p t D W ( 2 ) further refines these features to generate Y 5 R C / 4 × H × W with richer spatial representations. Through this two-stage cascaded processing, the effective receptive field progressively expands from 3 × 3/5 × 5 to 5 × 5/9 × 9, enabling the capture of spatial patterns ranging from fine textures to medium-range structures.
All branches are then aggregated through dense connections, and a 1 × 1 convolution fusion operation ϕ f u s i o n maps the concatenated multi-channel features back to the target dimension as follows:
F o u t = ϕ f u s i o n Concat [ Y 0 , Y 1 , Y 2 , Y 3 , Y 4 , Y 5 ]
The concatenation operates along the channel dimension, yielding an intermediate tensor of R ( 6 × C / 4 ) × H × W , and ϕ f u s i o n reduces the channel count back to C, performing cross-branch feature interaction and compression simultaneously. This dense connection strategy ensures that features at different processing stages are all preserved in the final output. The original split features Y 2 and Y 3 provide low-level geometric information, while the refined features Y 4 and Y 5 contribute multi-scale spatial patterns learned through the InceptionDWBlocks. The fixed-scale branches Y 0 and Y 1 supply complementary channel-recombined and locally filtered representations, and this six-stream dense aggregation ensures maximum feature reuse across all processing stages.
Compared to standard convolution blocks, as illustrated in Figure 3, MDFB reduces parameter count through feature splitting and depthwise convolutions while retaining rich multi-scale feature representations, ensuring that geometric details such as small object edge textures are not lost during forward propagation.

3.2.2. Deep Layer Semantic Modeling Module

In deep-layer feature maps, the semantics of small objects have become relatively abstract, requiring a global receptive field to capture long-range context. The HAFMB module combines self-attention with multi-scale convolutions to achieve collaborative modeling of local and global features. Given input X R C × H × W , a channel splitting strategy is adopted to divide it into a global branch X g R α C × H × W and a local branch X l R ( 1 α ) C × H × W , where α denotes the splitting ratio that controls the proportion of channels allocated to global self-attention modeling. We set α = 0.5 by default, equally partitioning channels between the global and local branches. This balanced allocation ensures that sufficient channels are devoted to capturing long-range dependencies via self-attention, while the remaining channels preserve local detail information. The selection of α = 0.5 is empirically validated through ablation experiments in Section 4.4.1, a channel splitting strategy is adopted to divide it into a global branch X g R 0.5 C × H × W and a local branch X l R 0.5 C × H × W . In the global branch, spatial feature enhancement is performed through single-head self-attention as follows:
X g = ϕ p r o j Softmax ϕ Q ( X g ) ϕ K ( X g ) T d q k ϕ V ( X g )
where ϕ Q , ϕ K , and ϕ V are the query, key, and value mapping functions, respectively, and d q k is the dimension of query and key vectors. Multi-scale depthwise convolution branches are simultaneously introduced to enhance local representation, and final fusion is achieved through residual connections as follows:
F o u t = X + ϕ f i n a l Concat X g , X l , ϕ D W 3 × 3 ( X ) , ϕ D W 5 × 5 ( X )
Through channel splitting and single-head attention design, global modeling capability is maintained while meeting lightweight requirements, providing semantically robust feature representations for the detection head.

3.3. High-Fidelity Feature Transformation Mechanism

Traditional methods employ nearest-neighbor or bilinear interpolation for upsampling, which cannot reconstruct sub-pixel level geometric details, leading to the degradation of small object edge sharpness and texture information. Meanwhile, simple concatenation of shallow and deep layer features ignores the essential differences in semantic hierarchy and spatial alignment, causing spatial misalignment during feature fusion. In the downsampling direction, when strided convolutions or max pooling directly reduce resolution, insufficient sampling rates trigger aliasing effects that convert high-frequency details into low-frequency noise. We propose a high-fidelity transformation framework covering the entire upsampling and downsampling process. The upsampling stage avoids interpolation blur through a channel cyclic shift mechanism, transforming resolution recovery into channel-spatial reorganization. The deep–shallow layer fusion stage resolves the semantic gap through bidirectional gating mechanisms, achieving adaptive alignment. The downsampling stage suppresses aliasing distortion through a three-branch parallel architecture.

3.3.1. Channel-Adaptive Shift Upsampling

To address the inherent deficiencies of traditional upsampling, we reformulate the resolution recovery problem as channel-spatial reorganization. Given input F in R C × H × W , local spatial patterns are first extracted through depthwise convolution as follows:
F dw = ϕ D W 3 × 3 ( F in )
Subsequently, a channel shift mixing operation is introduced to cyclically shift feature channels along spatial dimensions, enabling adjacent positions to capture context from different receptive fields. For an upsampling factor of s = 2 , the shift operation is formalized as follows:
F shift ( i ) = CircShift ( F dw ( i ) , δ i ) , i { 1 , , C }
where δ i { 1 , 0 , 1 } 2 denotes the shift vector for the i-th channel. The shift direction is determined by a fixed cyclic assignment based on the channel index as follows: δ i = D ( i mod 4 ) , where D = { ( 0 , 1 ) , ( 0 , 1 ) , ( 1 , 0 ) , ( 1 , 0 ) } corresponds to upward, downward, leftward, and rightward shifts, respectively. This deterministic pattern ensures that every four consecutive channels uniformly cover all cardinal directions, enabling the subsequent pointwise convolution to aggregate information from all four spatial neighborhoods for 2 × 2 sub-pixel reconstruction without introducing any learnable parameters.
F up = σ ϕ p w ( F shift ) R C × 2 H × 2 W
where ϕ p w denotes pointwise convolution implemented as 1 × 1 convolution, and σ represents the activation function. This design effectively alleviates edge blur caused by traditional interpolation, providing a high-quality resolution foundation for subsequent deep–shallow layer feature fusion.The network are illustrated in Figure 4.

3.3.2. Multi-Scale Context Alignment Fusion

Relying solely on high-fidelity upsampling is insufficient to bridge the semantic gap between deep and shallow layer features. Shallow layer features are rich in spatial details but have low semantic abstraction, while deep layer features possess rich semantics but limited resolution. The two exhibit significant distributional differences in feature space. We dynamically regulate fusion weights through bidirectional gating mechanisms to achieve adaptive balance between semantics and details.
Given the upsampled deep layer feature F deep R C × H × W and the shallow layer feature F shallow R C × H × W at the same resolution, adaptive gating weights are first generated through independent 1 × 1 convolutions as follows:
G h = σ ( ϕ 1 × 1 h ( F shallow ) ) , G l = σ ( ϕ 1 × 1 l ( F deep ) )
where σ denotes the Sigmoid activation function, and G h , G l R C × H × W control the fusion proportions of shallow and deep layer features, respectively, achieving pixel-wise adaptive weight allocation.
Based on the gating weights, bidirectional interaction enhancement is performed. Shallow layer features are refined through deep layer semantic guidance, while deep layer features recover local textures through shallow layer detail compensation:
F h = F shallow + G h F shallow + ( 1 G h ) ( G l F deep )
This formula achieves the self-enhancement of shallow layer features and the selective incorporation of deep layer semantics through the gating mechanism, where the term ( 1 G h ) ensures complementary balance between the two types of information.
Finally, the bidirectionally enhanced features are aggregated through channel concatenation and convolution as follows:
F fused = ϕ c o n v 3 × 3 Concat ( F h , F deep )
This operation concatenates the enhanced shallow layer features with the upsampled deep layer features along the channel dimension, learning the optimal fusion strategy through the convolutional layer. This enables the network to adaptively adjust the contributions of deep and shallow layer information according to object scale and scene complexity. For regions with dense small objects, the gating mechanism tends to preserve more shallow layer details, while in complex background regions, it relies on deep layer semantics for feature filtering.

3.3.3. Frequency-Aware Downsampling (DRFD)

Traditional strided convolutions or pooling operations act as low-pass filters. When the sampling rate is insufficient, high-frequency details such as small object edge textures undergo spectral aliasing, converting into unrecoverable noise. To address this problem, we adopt a three-branch parallel architecture, termed Diversified Residual Frequency-aware Downsampling (DRFD) Figure 5, to capture features from the following three dimensions: detail preservation, semantic extraction, and feature enhancement. The branches are fused through residual connections to minimize information loss.
Given input X i n R C × H × W , the features are distributed into the following two main paths: a detail preservation path and a semantic-enhancement path, where the latter further consists of a convolution branch and a pooling branch, forming three parallel branches in total. The detail preservation branch employs the Cut operation, which performs Space-to-Depth transformation by periodically rearranging pixels from 2 × 2 neighborhoods into the channel dimension, achieving lossless geometric reorganization as follows:
X c u t = ϕ 1 × 1 Concat ( X 00 , X 01 , X 10 , X 11 )
where X i j represents the sub-pixel grid sampled with stride 2 at position ( i , j ) , with i , j { 0 , 1 } . This operation avoids high-frequency information loss inherent in traditional downsampling, completely preserving the original feature distribution.
The semantic extraction branch and feature enhancement branch extract abstract features and key object responses through strided convolution and max pooling, respectively, as follows:
X c o n v = ReLU ( BN ( ϕ c o n v 3 × 3 , s = 2 ( X i n ) ) ) , X m a x = BN ( MaxPool 2 × 2 ( X i n ) )
The semantic branch employs 3 × 3 convolution with stride 2 to learn contextual semantics, with outputs sequentially processed through batch normalization and GELU activation. The enhancement branch highlights local peak features through 2 × 2 max pooling, with outputs processed through batch normalization. The two branches collaborate in a complementary manner as follows: the convolution branch learns feature abstraction capability while the pooling branch enhances responses in object regions. Together they compensate for the insufficiency of the detail branch in semantic understanding.
After concatenating the three feature streams along the channel dimension, cross-channel interaction is performed through a convolutional layer with dimensionality reduction to the target channel count as follows:
F d o w n = ϕ f u s i o n 1 × 1 ( Concat [ X c u t , X c o n v , X m a x ] )
This fusion strategy embodies the residual philosophy. The Cut branch preserves original detail information, while the convolution and pooling branches supplement semantic and enhancement features. The complementary mechanism among the three branches effectively suppresses downsampling aliasing effects, significantly improving the representation capability of deep layer features for small objects.

3.4. Multi-Scale Context Focus Aggregation

Although high-fidelity feature transformation ensures complete information transmission across hierarchical levels, the effective aggregation of multi-scale features still faces the fundamental challenge of limited receptive fields. The effective receptive field of networks is typically much smaller than the theoretical receptive field and concentrates in the central region of feature maps, resulting in the low utilization of edge information. For tiny objects that inherently lack discriminative texture features, long-range spatial context must be relied upon for inference.
We design the Multi-Scale Contextual Focus Aggregation module, termed FocusFeature (Figure 6), inspired by the collaborative working mechanism of human foveal and peripheral vision. This module serves as the central hub of the feature pyramid, simultaneously receiving three feature streams from different processing stages as follows: F P 2 f i n a l carrying high-resolution details, F P 3 f u s e d representing middle layer features, and F P 4 e n c encoding semantic abstraction. Multi-granularity spatial context focusing is achieved within a single module through parallel large-kernel depthwise convolutions.
First, spatial alignment is performed on the three inputs at different scales. To unify features to the P3 scale with 8× downsampling, frequency-aware downsampling using the three-branch architecture described in Equations (12)–(14) is applied to F P 2 f i n a l , Channel-Adaptive Shift Upsampling using the shift reorganization mechanism described in Equations (6)–(8) is applied to F P 4 e n c , and F P 3 f u s e d undergoes direct channel alignment through 1 × 1 convolution. We concatenate the aligned features along the channel dimension, thereby obtaining a unified multi-scale representation F align as follows:
F align = Concat DownSample ( F P 2 f i n a l ) , ϕ 1 × 1 ( F P 3 f u s e d ) , UpSample ( F P 4 e n c )
where DownSample ( · ) and UpSample ( · ) denote the frequency-aware downsampling and Channel-Adaptive Shift Upsampling operations, respectively.
After obtaining the aligned features, a multi-granularity parallel focusing mechanism is introduced, where depthwise convolution kernels of different sizes K = { 5 , 7 , 9 , 11 } simultaneously operate on F align . Small kernels capture local fine textures, corresponding to the high-resolution perception of foveal vision, while large kernels establish long-range spatial dependencies, simulating the wide-field background understanding of peripheral vision. The parallel multi-kernel outputs are fused with the original features through residual connections and undergo cross-channel interaction via pointwise convolution as follows:
F P 3 f o c u s = ϕ p w ( 1 ) F align + ϕ p w ( 2 ) k K ϕ D W k × k ( F align )
Through the FocusFeature module, multi-granularity receptive field coverage ranging from 5 × 5 to 11 × 11 is achieved within a single aggregation layer. Compared to traditional FPN architectures that require stacking dozens of convolutional layers to achieve equivalent receptive fields, this design significantly improves computational efficiency. More importantly, this parallel large-kernel architecture enables the model to perceive deep-layer environmental semantic context through large kernels while preserving the shallow-layer geometric details of tiny objects, achieving cross-scale reasoning capability that discerns the significant from the subtle.
To accommodate the dual-scale input requirements of the decoder, F P 3 f o c u s directly serves as the enhanced P3 feature. Simultaneously, to generate semantically consistent deep-layer features, F P 3 f o c u s is fed into the frequency-aware downsampling module again for 2× downsampling as follows:
F P 4 f o c u s = DownSample ( F P 3 f o c u s )
This design ensures that F P 3 f o c u s and F P 4 f o c u s are highly aligned in contextual semantics, while the three-branch architecture further suppresses aliasing noise when generating P4 features, maintaining semantic fidelity. Compared to traditional three-scale schemes, the dual-scale features significantly reduce decoder computational complexity while avoiding information loss of small objects.

3.5. Decoder and Training Strategy

To preserve the advantages of end-to-end training, we inherit the decoder architecture and training strategy from DEIM, while performing key adaptations for UAV small object detection. The deeply optimized dual-scale features F P 3 f o c u s at the middle layer with 8× downsampling and F P 4 f o c u s at the deep layer with 16× downsampling are fed into the D-FINE Transformer decoder. This decoder redefines the regression task as a distribution modeling problem and progressively refines prediction results on dual-scale feature maps through an IoU-aware query selection strategy.
The training phase employs Dense O2O matching strategy and Matchability-Aware Loss. Dense O2O strengthens supervision signals by increasing the number of target matches per image, addressing the sparse supervision problem inherent in traditional one-to-one matching. Matchability-Aware Loss performs adaptive optimization for matches of different quality levels, applying stronger supervision to high-quality matches while adopting more relaxed constraints for low-quality matches, significantly accelerating model convergence. This training strategy is particularly suitable for detecting dense small objects in UAV scenarios, improving training efficiency while ensuring accuracy.
Although P2 features are extracted by the backbone, they are deliberately excluded from the final decoding stage. This is because P2 at 160 × 160 resolution would incur quadratic attention complexity in the Transformer decoder, violating real-time constraints, while its semantically weak responses may introduce low-level noise that degrades query matching quality. Crucially, P2 information is not discarded but already absorbed into F P 3 f o c u s and F P 4 f o c u s through the upstream MCAF gated fusion and FocusFeature large-kernel aggregation, rendering direct P2 decoding both redundant and counterproductive.
Unlike DEIM, our decoder only performs predictions on dual-scale features consisting of P3 and P4, avoiding the loss of small object information caused by the deepest layer features. This design maintains the advantages of end-to-end training while achieving specialized optimization for UAV small object detection, ultimately generating high-confidence bounding boxes and category scores.

4. Experiments and Results

4.1. Datasets and Evaluation Metrics

4.1.1. Dataset Setup

To comprehensively validate the effectiveness and robustness of HMF-DEIM in UAV perspectives, this study employs the following aerial imagery detection datasets for experiments: VisDrone2019 Dataset.
Within the global UAV vision field, this dataset has established itself as a foundational benchmark and a highly regarded resource. It encompasses complex imagery from 14 cities across China under varying weather conditions (cloudy and sunny), illumination settings (daytime and nighttime), and scene densities. The dataset contains 10 fine-grained object categories as follows: pedestrian, people, bicycle, car, van, truck, tricycle, awning-tricycle, bus, and motor. Following the official protocol, we partition the dataset into 6471 training images, 548 validation images, and 1610 test images. All images are uniformly resized to 640 × 640 resolution for training and testing.
To provide a detailed understanding of the test set composition, Table 1 reports the number of instances per category and per size group (small, medium, and large) in the VisDrone2019 test split, based on the official dataset statistics [55]. Small objects are defined as those with an area < 32 2 pixels, medium objects with an area between 32 2 and 96 2 pixels, and large objects with an area > 96 2 pixels.

4.1.2. Evaluation Metrics

This study employs the standard COCO evaluation protocol and YOLO evaluation metrics for comprehensive assessment as follows:
  • Average Precision (AP)
    • mAP50: Average precision at IoU threshold of 0.5.
    • mAP50–95:Average precision across IoU thresholds from 0.5 to 0.95 with a step size of 0.05, providing a more rigorous reflection of high-precision localization capability.
  • Efficiency Metrics
    • FPS (Frames Per Second): Real-time processing capability measured on NVIDIA A100-PCIE-40 GB.
    • GFLOPs (Giga Floating-point Operations): Measuring model computational complexity.
    • Params (Parameters): Model parameter count, evaluating storage requirements and deployment feasibility.

4.2. Implementation Details

4.2.1. Training Strategy

To ensure fair comparison, the proposed HMF-DEIM model and the compared DEIM baseline are trained without loading any pretrained weights. All models adopt unified training configurations, with specific parameter settings shown in Table 2.
To ensure valid comparison, all baseline models are trained and tested under identical hardware environments and hyperparameter settings. The DEIM baseline adopts the exact same training configuration as HMF-DEIM.

4.2.2. Evaluation Metrics

This study employs multiple key metrics to comprehensively evaluate model performance across different datasets, including Precision, Recall, F1 Score, mean Average Precision (mAP50, mAP50–95), inference speed (FPS), floating-point operations (FLOPs), and model parameters (Params).
The accuracy of object detection models relies on prediction correctness, evaluated through Intersection over Union (IoU) and thresholds ∈ [0, 1], specifically using True Positives (TPs), False Positives (FPs), and False Negatives (FNs) metrics as follows:
  • TP (True Positive): Correct predictions when IoU exceeds the specified threshold.
  • FP (False Positive): Incorrect predictions of non-existent objects, or detected objects with IoU below the threshold.
  • FN (False Negative): Objects present in the actual image that the model fails to predict.
It should be noted that True Negatives (TNs) are not used in object detection, as the number of bounding boxes that should not be predicted in each image is infinite.
Based on the above confusion matrix elements, the following evaluation metrics are defined:
Precision measures the proportion of correct predictions among all predicted bounding boxes as follows:
Precision = T P T P + F P
Recall represents the proportion of objects correctly localized and identified among ground truth annotations as follows:
Recall = T P T P + F N
F1 Score as the harmonic mean of precision and recall, provides a comprehensive evaluation of algorithm performance as follows:
F 1 - score = 2 P R P + R
Mean Average Precision (mAP) is the primary metric for evaluating object detection model accuracy. mAP50 represents the average precision when the IoU threshold is 0.5, expressed as the integral area under the Precision-Recall curve (P-R curve). mAP50–95 considers average precision across IoU thresholds from 0.5 to 0.95 (step size 0.05), providing a more rigorous reflection of the model’s high-precision localization capability.
The mAP is calculated as follows:
mAP = 1 n i = 1 n A P i
where n denotes the number of categories, and A P i represents the average precision for the i-th category. The scale-specific metrics are as follows:
  • APs (Small): Average precision for small objects (area < 322).
  • APm (Medium): Average precision for medium objects (322 < area < 962).
  • APl (Large): Average precision for large objects (area > 962).
Finally, the metrics for evaluating model complexity and inference speed are considered as follows:
  • FPS is defined as the number of frames processed by the model per second. Typically, based on specific application scenarios, real-time object detection models need to achieve a frame rate of no less than 40–50 FPS when handling video frames to fulfill practical task requirements.
  • FLOPs represent the number of floating-point operations required per second. This is a key metric for measuring the speed and computational capability of neural network models. Lower FLOPs indicate lower computational complexity.
  • Model Parameters, measured in millions (M), reflect both model scale and complexity, and are commonly used as critical indicators for evaluating lightweight architectures. In general, a smaller parameter count enables faster inference and facilitates deployment on edge devices with limited computational resources.
The comprehensive evaluation of the above metrics provides a thorough reflection of model performance in terms of detection accuracy, computational efficiency, and deployment feasibility.

4.3. Main Results Analysis

4.3.1. Comprehensive Comparison on the VisDrone2019 Test Set

To evaluate HMF-DEIM’s performance, we compare it with 18 mainstream detection models on the VisDrone2019 test set, covering classic Transformer detectors, CNN detectors, latest YOLO series, and DEIM series models. Table 1 presents the detailed performance comparison results.
As shown in Table 3, HMF-DEIM demonstrates excellent comprehensive performance on the VisDrone2019 test set, achieving an mAP50 of 0.405 and an mAP50–95 of 0.235. Compared to the baseline DEIM-D-Fine-S, HMF-DEIM achieves an absolute improvement of 2.1% in mAP50 and 1.6% in mAP50–95 with only a 1.69M increase in parameters. Most notably, on the APs metric reflecting tiny object detection capability, HMF-DEIM achieves a relative improvement of up to 21.3%. This strongly demonstrates that removing redundant deep-layer features (P5) and introducing the high-fidelity feature transformation mechanism can effectively address the small object information loss problem in UAV perspectives.
Compared to the SOTA model D-Fine-S at a similar scale, HMF-DEIM surpasses it by 1.1% in mAP50 and 2.0% in APs, while also achieving significant advantages in large object APl. Furthermore, compared to the classic Transformer model DINO-R50 that employs high-resolution input (750, 1333), HMF-DEIM achieves comparable performance in APs using only (640, 640) input resolution, while requiring merely 25% of its parameters and 12.4% of its GFLOPs. This result indicates that targeted architectural optimization is more efficient than simply increasing input resolution or stacking parameters.
It is important to note that our core comparative experiments are conducted at the S (Small) scale to ensure fair comparison under the same parameter regime. To address potential concerns about environmental consistency, in this revision we have re-run D-Fine-M and DEIM-D-Fine-M under our unified experimental environment with identical data preprocessing, input resolution ( 640 × 640 ), augmentation protocols, evaluation scripts, and IoU threshold settings. The updated results in Table 3 confirm that D-Fine-M achieves a higher mAP50 (0.410) than HMF-DEIM (0.405), which is expected given its substantially larger model capacity (19.19 M vs. 11.87 M parameters). However, HMF-DEIM significantly outperforms D-Fine-M in the most critical metric for UAV scenarios—APs (0.148 vs. 0.133, a relative improvement of 11.3%)—and also achieves a higher APl (0.489 vs. 0.479). This result demonstrates that our architectural innovations specifically benefit small object detection, which is the primary focus of this work. Compared to DEIM-D-Fine-M (19.19 M params), HMF-DEIM achieves superior performance across nearly all metrics with only 61.9% of the parameters, validating the effectiveness of our hierarchical differentiation and high-fidelity transformation design. All evaluation metrics follow the standard COCO evaluation protocol, as adopted in DEIM [23].
Regarding statistical significance, we conduct bootstrap resampling (10,000 iterations) on the VisDrone2019 test set to compute 95% confidence intervals for the key metrics. Specifically, we resample the 1610 test images with replacement, recompute mAP50 and APs for both HMF-DEIM and the baseline DEIM-D-Fine-S on each bootstrap sample, and report the 2.5th and 97.5th percentiles. The resulting 95% confidence intervals are as follows: HMF-DEIM mAP50: [ 0.399 , 0.411 ] vs. DEIM-D-Fine-S mAP50: [ 0.378 , 0.390 ] ; HMF-DEIM APs: [ 0.141 , 0.155 ] vs. DEIM-D-Fine-S APs: [ 0.115 , 0.129 ] . The non-overlapping confidence intervals confirm the statistical significance of the improvements ( p < 0.05 ). Moreover, the per-class analysis in Table 4 shows that HMF-DEIM achieves consistent positive AP improvements across all 10 categories. The gains are independently corroborated on two additional datasets with markedly different scale distributions and imaging conditions as follows: AI-TOD-v2 (28,036 images, 700,621 instances, +6.2% mAP50) and DOTA-v1.5 (+5.4% mAP50). The convergence of bootstrap-verified confidence intervals, consistent per-class improvements, and cross-dataset validation collectively establishes the robustness and statistical reliability of the reported performance gains.
In terms of computational efficiency, although the GFLOPs of HMF-DEIM increase by approximately 37% compared to the baseline DEIM-D-Fine-S, this is primarily attributed to the multi-scale large-kernel convolutions in the FocusFeature module and the full-chain high-fidelity transformation computations. Nevertheless, benefiting from the dual-scale decoding strategy that reduces partial detection head overhead, the model achieves a TensorRT FP16 inference speed of 465 FPS on NVIDIA A100 GPU. This demonstrates that HMF-DEIM maintains extremely high inference efficiency while significantly improving detection accuracy, capable of meeting the stringent requirements for real-time processing on UAV onboard platforms.

4.3.2. Fine-Grained Category Performance Analysis

Table 4 presents the detailed performance of HMF-DEIM across the 10 categories in the VisDrone2019 dataset, with comprehensive comparison against the baseline model DEIM-D-Fine-S. Experimental results demonstrate that HMF-DEIM achieves performance improvements across all categories, with an average AP improvement of 7.3%. Among these, the improvement magnitudes for objects of different scales exhibit distinctly differentiated characteristics, directly reflecting the effectiveness of the architectural improvement strategies proposed in this paper.
On small object categories, HMF-DEIM exhibits the most significant performance improvements. Specifically, the AP improvements for pedestrian, people, bicycle, and motor categories all exceed 7.6%, with the pedestrian category achieving the highest relative improvement of 11.7%. This result directly validates the rationale for removing the deepest layer—for these small objects, the feature map dimensions at the deepest layer have already decreased to below one pixel, completely unable to preserve effective spatial information, instead introducing noise and increasing computational burden. Meanwhile, the high-fidelity feature fusion mechanism significantly enhances the model’s representation capability for small objects by preserving more original detail information from the P3 layer. It is noteworthy that objects in the 28–36 pixel size range achieve 8–11% improvement magnitudes; these objects are precisely at the critical point of visibility disappearance after 32× downsampling, making the removal of the P5 layer particularly impactful for them.
For medium and large object categories, although the baseline model has already achieved relatively high detection accuracy on these objects, HMF-DEIM still achieves stable improvements of 4–6%. This indicates that the dual-scale detection strategy and hierarchical multi-scale feature fusion mechanism proposed in this paper are not solely optimized for small objects, but they provide universal gains for objects across all scales. Additionally, on category pairs with highly similar visual appearances, the performance improvement of HMF-DEIM is more pronounced. This benefits from the contextual semantic information introduced by the MCAF module and the multi-scale focusing capability of FocusFeature, enabling the model to perform more precise category discrimination through surrounding environmental features and fine-grained local patterns, rather than relying solely on the shape and texture features of the objects themselves.

4.4. Ablation Experiments

To systematically validate the effectiveness of each component in HMF-DEIM, we conduct progressive ablation experiments on the VisDrone2019 test set. As shown in Table 5, using DEIM-D-Fine-S as the baseline, each module demonstrates a clear cumulative gain effect.
The ablation analysis proceeds in a hierarchical manner to isolate the contribution of each architectural component. Removal of the redundant deepest layer P5 constitutes the first modification. By constraining the detection scales to P3-P4, the model achieves a 5.7% improvement in APs while simultaneously reducing computational cost by 13.7%. This counterintuitive result strongly validates our hypothesis as follows: in tiny object detection from UAV perspectives, the P5 layer with 32× downsampling not only loses target information but also introduces background noise. Introduction of the hierarchical differentiation backbone network represents the subsequent enhancement. Specifically, the shallow P2 features are enabled in the backbone, and the MDFB and HAFMB modules are applied at their respective hierarchical levels. Although incorporating high-resolution P2 features causes computational cost to slightly increase to 25.2 GFLOPs, this overhead remains within a controllable range due to the lightweight design of depthwise separable convolutions. Concurrently, APs significantly improves to 0.135, indicating that preserving the geometric details of P2 in the feature extraction stage is crucial for small object representation. The high-fidelity feature transformation modules—comprising CASU, MCAF, and DRFD—are progressively integrated to ensure the integrity of P2-P4 feature flow during cross-scale interactions. Notably, the MCAF module further improves APs by utilizing fine-grained information from P2 for semantic alignment during the feature fusion stage. Although processing the P2 layer incurs additional computational growth, this investment is justified by the steady improvements in detection accuracy. The FocusFeature module, serving as the core aggregation node, completes the architectural integration. This module aligns multi-scale features containing P2 information and performs large-kernel aggregation, ultimately outputting enhanced P3/P4 features for decoding. The complete HMF-DEIM model achieves mAP50 = 0.405 and APs = 0.148. Although the final computational cost increases by approximately 37% compared to the baseline, the APs metric demonstrates a substantial relative improvement of 21.3%, while the model maintains extremely high inference speed. This computational investment thus offers exceptional cost-effectiveness, demonstrating that HMF-DEIM achieves an optimal balance between leveraging P2 information for feature enhancement and maintaining efficient prediction through dual-scale (P3/P4) decoding.

4.4.1. Channel Splitting Ratio in HAFMB

The HAFMB module employs a channel splitting strategy to partition input features into a global branch (processed by single-head self-attention) and a local branch (identity mapping). The splitting ratio α determines the proportion of channels allocated to global modeling. To identify the optimal configuration, we conduct ablation experiments on the VisDrone2019 test set by varying α { 0.25 , 0.5 , 0.75 } , with all other settings kept identical to the full HMF-DEIM model.
As shown in Table 6, the splitting ratio α = 0.5 achieves the best overall performance. When α = 0.25 , the limited number of channels allocated to self-attention restricts the module’s global modeling capability, resulting in a 0.6% drop in mAP50 and a notable decline in APs. Conversely, when α = 0.75 , although more channels participate in global attention, the reduced local branch weakens the preservation of fine-grained spatial details, leading to marginal performance degradation with increased parameters. The balanced α = 0.5 configuration provides the optimal trade-off between global semantic modeling and local detail preservation, which is consistent with the design principle that deep-layer features require both long-range contextual understanding and retention of discriminative local patterns.

4.4.2. Comparison of Upsampling Methods

To evaluate the effectiveness of the proposed CASU module, we compare it against representative upsampling methods by replacing all upsampling operators in HMF-DEIM while keeping other components unchanged. The compared methods include Nearest-neighbor interpolation, Bilinear interpolation, CARAFE [38] (a content-aware reassembly operator), and DySample [56] (a dynamic upsampling method). All experiments are conducted on the VisDrone2019 test set under identical training settings.
As shown in Table 7, conventional interpolation methods (Nearest and Bilinear) yield the lowest accuracy due to their inability to reconstruct sub-pixel details, particularly for tiny objects (APs of 0.136 and 0.138). Content-aware methods CARAFE and DySample improve accuracy by learning adaptive upsampling kernels, but thye introduce additional learnable parameters (+0.48 M and +0.31 M, respectively) and higher computational cost. In contrast, CASU achieves the best accuracy across all metrics while maintaining lower parameters and GFLOPs than both CARAFE and DySample. This efficiency advantage stems from CASU’s parameter-free cyclic shift mechanism, which rearranges existing channel information for sub-pixel reconstruction rather than learning content-dependent kernels, achieving an effective trade-off between reconstruction quality and computational overhead.

4.5. Generalization Experiments

To validate the robustness of the HMF-DEIM architecture and its generalization capability under different aerial imaging conditions, we conduct evaluations on two additional highly challenging datasets, AI-TOD-v2 and DOTA-v1.5.

4.5.1. AI-TOD-v2 Tiny Object Detection

The AI-TOD-v2 dataset is specifically designed for tiny object detection, containing 28,036 images and 700,621 instances, with an average object size of only 12.8 pixels, and 86% of objects smaller than 16 pixels. The dataset is officially split into training (11,214 images), validation (5607 images), and test (11,215 images) sets. Since AI-TOD-v2 provides complete training, validation, and test set partitions with corresponding annotations, we conduct evaluations on both the validation and test sets. In the experiments, we maintain hyperparameter settings consistent with VisDrone2019, with only necessary adjustments made according to computational resources.
As shown in Table 8, experiments on AI-TOD-v2 reveal that HMF-DEIM possesses solid generalization ability. On the test set, our method achieves 0.586 mAP50 and 0.248 mAP50–95, representing improvements of 6.2% and 2.7% over the baseline, respectively. This indicates that our architecture successfully recovers a substantial number of extremely tiny objects that are missed by traditional methods through preserving shallow features (P2) and high-fidelity feature transmission. The consistent improvements on both validation and test sets demonstrate the stability and reliability of our method.To provide broader context, we additionally compare with YOLOv11-S (representing the YOLO paradigm) and D-Fine-S (representing the DETR paradigm). On the test set, HMF-DEIM surpasses D-Fine-S by 5.8% and YOLOv11-S by 16.8% in mAP50, confirming the generalization advantage of our architecture on datasets dominated by extremely tiny objects.

4.5.2. DOTA-v1.5 Cross-Domain and Cross-Scale Generalization Experiments

The DOTA-v1.5 dataset provides large-scale, multi-category aerial images, containing 403,318 instances across 16 categories. The dataset comprises 2806 images, with official splits of 1411 training images, 458 validation images, and 937 test images. Since the official test set labels are not publicly available, all comparative experiments are conducted on the validation set. The experiments adopt a batch size of 2, training for 300 epochs, with other hyperparameters kept consistent with the VisDrone2019 experimental configuration. As shown in Table 9, We crop high-resolution images into 1024 × 1024 sub-images for processing (HBB mode).
The experimental results demonstrate that HMF-DEIM achieves 0.712 mAP50 and 0.462 mAP50–95 on DOTA-v1.5, representing improvements of 5.4% and 4.4% over the baseline, respectively. The F1 score improvement reaches 3.8%. This result validates that the FocusFeature module effectively expands the receptive field through parallel large-kernel convolutions, enabling the model to achieve contextual understanding capability for large-scale objects at shallower network layers (P3/P4), while the CASU upsampling module renders the boundaries of densely arranged small objects more distinct. Compared to D-Fine-S and YOLOv11-S, HMF-DEIM achieves improvements of 6.3% and 13.6% in mAP50, respectively, demonstrating consistent superiority across both DETR-based and YOLO-based paradigms in diverse aerial scenarios.

4.6. Visualization

To intuitively demonstrate the detection performance of HMF-DEIM and the functional mechanisms of each module, this section conducts visualization studies from the following two dimensions: detection result comparison and feature response analysis. All visualization results are generated based on typical samples from the VisDrone2019 test set and AI-TOD-v2 dataset.
Figure 7, Figure 8 and Figure 9 present detection result comparisons in three typical scenarios. Each figure displays, from left to right, the original image, DEIM-D-Fine-S (baseline) detection results, and HMF-DEIM (ours) detection results.
In the dense small object scenario illustrated in Figure 7, the baseline model detects 54 objects but exhibits obvious missed detections for smaller pedestrians and motorcycles in the upper half of the image. In contrast, HMF-DEIM detects 14 additional objects in the same scenario with generally higher detection confidence. This improvement benefits from two design aspects as follows: removing the P5 layer prevents complete information loss of small objects after 32× downsampling, and the FocusFeature module enhances the feature discriminability of small objects through cross-scale context aggregation.
Figure 8 demonstrates the complex background scenario, where semantic confusion in deep features causes the baseline model to misidentify some building edges as vehicle objects, such as misrecognizing building structures in the lower right corner as buses, while also exhibiting missed detections for objects with colors similar to buildings. HMF-DEIM effectively suppresses background noise interference through global semantic modeling in the HAFMB, eliminates the aforementioned false detections, and successfully detects occluded or low-contrast vehicle objects.
The extreme scale variation scenario shown in Figure 9 reveals that while the baseline model can accurately detect nearby large vehicles, it almost completely misses tiny motorcycles at the far end of the road. HMF-DEIM detects five additional tiny objects in this scenario, achieving balanced detection across all scales. This result validates the effectiveness of the CASU-MCAF-DRFD full-chain high-fidelity feature transformation framework, where CASU avoids edge blur during upsampling, MCAF bridges the semantic gap between deep and shallow layer features, and DRFD suppresses aliasing effects during downsampling. The three components work synergistically to ensure the integrity of small object features during cross-scale transfer.

4.6.1. Feature Response Heatmap Analysis

To further validate the model’s perception capability for tiny objects, Figure 10 presents a comparison of feature response heatmaps on the AI-TOD-v2 dataset. This dataset has an average object size of only 12.8 pixels, with 86% of objects smaller than 16 pixels, posing extremely high requirements on the detail perception capability of detection models.
Comparing the heatmaps of the two models reveals several notable differences. In terms of response intensity, the baseline model’s heatmap shows relatively low response intensity in object regions, with diffuse response ranges and blurred boundaries with background regions, indicating that the model struggles to effectively capture discriminative features of tiny objects. The HMF-DEIM heatmap, by contrast, exhibits stronger and more concentrated responses in object regions with clearly discernible object contours, benefiting from the MDFB module’s high-fidelity preservation of shallow-to-middle layer geometric details.
Regarding background suppression, the baseline model’s heatmap exhibits local over-response phenomena where excessively dark colors in object center regions lead to feature saturation, while background regions show scattered weak response noise. HMF-DEIM achieves precise focusing on object regions through the HAFMB’s channel splitting strategy and single-head self-attention mechanism, effectively suppressing background noise. Quantitative statistics further demonstrate that the baseline model’s detection rate for tiny objects in this scenario is less than 50%, with a large number of pedestrian and non-motorized vehicle objects being missed. HMF-DEIM improves the detection rate to over 70% through the FocusFeature module’s multi-scale large-kernel convolution aggregation, with higher IoU alignment between detection boxes and actual object positions.

4.6.2. Visualization Conclusions

Based on the comprehensive visualization analysis above, several important conclusions emerge. HMF-DEIM significantly outperforms the baseline model in detection performance across UAV aerial scenarios including dense small objects, complex backgrounds, and extreme scale variations, with particularly notable improvements in the detection rate and localization accuracy for tiny objects. The synergistic action of the hierarchically differentiated backbone network combining shallow-to-middle layer MDFB with deep layer HAFMB, the high-fidelity feature transformation framework CASU-MCAF-DRFD, and the cross-scale focus aggregation module FocusFeature enable the model to effectively capture fine-grained features of small objects, suppress complex background noise, and establish cross-scale contextual associations. The visualization results intuitively validate the design intent of each core module as follows: removing the P5 layer solves the problem of complete small object information loss, CASU eliminates interpolation blur, DRFD suppresses aliasing effects, and FocusFeature expands the effective receptive field, collectively providing reliable guarantees for the model’s high-precision detection.

5. Conclusions

This paper presents HMF-DEIM, a novel end-to-end detection architecture specifically designed to address the challenges of small object detection in UAV aerial scenarios. Based on comprehensive analyses and validations, we confirm that fusing hierarchical differential feature extraction, full-link high-fidelity feature transformation, and cross-scale contextual focus aggregation can effectively boost detection performance under multi-scale conditions and complex aerial environments.
HMF-DEIM achieves significant performance gains across multiple benchmark datasets. On the VisDrone2019 test set, it improves mAP50 by 2.1% and mAP50–95 by 1.6% compared to the baseline, with a remarkable relative improvement of 21.3% in APs for tiny object detection. On the AI-TOD-v2 test set, the model demonstrates increases of 6.2% in mAP50 and 2.7% in mAP50–95, while on the DOTA-v1.5 validation set, improvements of 5.4% in mAP50 and 4.4% in mAP50–95 are achieved. Ablation studies further confirm the synergistic effectiveness of each architectural component as follows: removing the redundant P5 layer yields a 5.7% improvement in APs while reducing computational cost, and the progressive integration of MDFB, HAFMB, and the high-fidelity transformation modules demonstrates clear cumulative gains. Notably, HMF-DEIM achieves a TensorRT FP16 inference speed of 465FPS on an NVIDIA A100 GPU, fully meeting the stringent real-time processing requirements of UAV onboard platforms. The overall experimental findings verify that the model performs effectively in complicated real-world UAV environments and exhibits great promise for real applications.
Although the proposed method achieves notable gains, several aspects warrant further investigation. First, the multi-scale large-kernel convolutions in the FocusFeature module, while effective for expanding the receptive field, increase GFLOPs by approximately 37% compared to the baseline; future work will explore decomposed convolution strategies and alternative feature aggregation schemes to retain cross-scale modeling capacity while cutting computational costs. Second, objects under severe occlusion in dense urban scenarios remain challenging; occlusion-aware learning mechanisms capable of reconstructing holistic object features from partial visibility will be investigated, with particular emphasis on discriminating between visually confusable categories such as pedestrians and people. Third, objects of extremely small scale (below 8×8 pixels) continue to pose difficulties despite our improved architecture, as evidenced by the AI-TOD-v2 experiments in which 86% of targets measure under 16 pixels; improved shallow-layer feature representations and purpose-built attention mechanisms for sub-pixel objects will be pursued. Beyond these, adaptive multi-resolution processing pipelines will be explored to efficiently manage ultra-high-resolution aerial imagery on resource-limited UAV systems, and hardware-aware compression strategies—namely quantization and pruning—will be adopted to facilitate efficient deployment on UAV onboard processors, reconciling computational efficiency with detection performance by leveraging dedicated neural processing hardware.

Author Contributions

Conceptualization, L.M. and Y.L.; methodology, L.M. and Y.L.; software, Y.L. and J.X.; validation, L.M., Y.L. and J.X.; formal analysis, Y.L.; investigation, L.M. and Y.L.; resources, L.M.; data curation, Y.L. and J.X.; writing—original draft preparation, Y.L.; writing—review and editing, L.M. and Y.L.; visualization, Y.L. and J.X.; supervision, L.M.; project administration, L.M.; funding acquisition, L.M. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by the National Natural Science Foundation of China (NSFC), grant number 42571527.

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

Data sharing is not applicable to this article.

Acknowledgments

During the preparation of this manuscript, the authors used Grammarly-4.0Turbo for the purposes of grammar checking and improving the fluency and readability of the text. The authors have reviewed and edited the output and take full responsibility for the content of this publication.

Conflicts of Interest

The authors declare no conflicts of interest.

Abbreviations

The following abbreviations are used in this manuscript:
UAVUnmanned aerial vehicle
MDFBMulti-domain feature blending
HAFMBHierarchical attention-guided feature modulation block
CASUChannel-adaptive shift upsampling
MCAFMulti-scale context alignment fusion
DRFDDiversified residual frequency-aware downsampling
DETRDetection transformer
FPNFeature pyramid network
mAPMean average precision
FPSFrames per second
FLOPsFloating-point operations per second
TPTrue positive
FPFalse positive
FNFalse negative
TNTrue negative
IoUIntersection over union

References

  1. Shakhatreh, H.; Sawalmeh, A.H.; Al-Fuqaha, A.; Dou, Z.; Almaita, E.; Khalil, I.; Othman, N.S.; Khreishah, A.; Guizani, M. Unmanned Aerial Vehicles (UAVs): A Survey on Civil Applications and Key Research Challenges. IEEE Access 2019, 7, 48572–48634. [Google Scholar] [CrossRef]
  2. Erdelj, M.; Natalizio, E.; Chowdhury, K.R.; Akyildiz, I.F. Help from the Sky: Leveraging UAVs for Disaster Management. IEEE Pervasive Comput. 2017, 16, 24–32. [Google Scholar] [CrossRef]
  3. Mozaffari, M.; Saad, W.; Bennis, M.; Nam, Y.H.; Debbah, M. A Tutorial on UAVs for Wireless Networks: Applications, Challenges, and Open Problems. IEEE Commun. Surv. Tutor. 2019, 21, 2334–2360. [Google Scholar] [CrossRef]
  4. Khalifeh, A.; Aldahdouh, K.A.; Darabkh, K.A.; Al-Sit, W. A Survey of 5G Emerging Wireless Technologies Featuring LoRaWAN, Sigfox, NB-IoT and LTE-M. In Proceedings of the 2019 International Conference on Wireless Communications Signal Processing and Networking (WiSPNET), Chennai, India, 21–23 March 2019; pp. 561–566. [Google Scholar]
  5. Luo, W.; Li, Y.; Urtasun, R.; Zemel, R. Understanding the Effective Receptive Field in Deep Convolutional Neural Networks. In Proceedings of the 30th International Conference on Neural Information Processing Systems, Barcelona, Spain, 5–10 December 2016; Volume 29. [Google Scholar]
  6. Guo, M.H.; Xu, T.X.; Liu, J.J.; Liu, Z.N.; Jiang, P.T.; Mu, T.J.; Zhang, S.H.; Martin, R.R.; Cheng, M.M.; Hu, S.M. Attention Mechanisms in Computer Vision: A Survey. Comput. Vis. Media 2022, 8, 331–368. [Google Scholar] [CrossRef]
  7. Dosovitskiy, A.; Beyer, L.; Kolesnikov, A.; Weissenborn, D.; Zhai, X.; Unterthiner, T.; Dehghani, M.; Minderer, M.; Heigold, G.; Gelly, S.; et al. An Image is Worth 16x16 Words: Transformers for Image Recognition at Scale. In Proceedings of the International Conference on Learning Representations (ICLR), Vienna, Austria, 4 May 2021. [Google Scholar]
  8. Li, Y.; Chen, Y.; Wang, N.; Zhang, Z. Scale-Aware Trident Networks for Object Detection. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), Seoul, Republic of Korea, 27–28 October 2019; pp. 6054–6063. [Google Scholar]
  9. Kisantal, M.; Wojna, Z.; Murawski, J.; Naruniec, J.; Cho, K. Augmentation for Small Object Detection. arXiv 2019, arXiv:1902.07296. [Google Scholar] [CrossRef]
  10. Singh, B.; Davis, L.S. An Analysis of Scale Invariance in Object Detection–SNIP. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Salt Lake City, UT, USA, 18–22 June 2018; pp. 3578–3587. [Google Scholar]
  11. Zhang, R. Making Convolutional Networks Shift-Invariant Again. In Proceedings of the International Conference on Machine Learning (ICML), Long Beach, CA, USA, 9–15 June 2019; pp. 7324–7334. [Google Scholar]
  12. Zou, X.; Xiao, Z.; Li, Q.; Deng, X.; Wang, M.; Zhang, J. Anti-Aliasing Attention U-Net Model for Skin Lesion Segmentation. IEEE Access 2022, 10, 2019–2031. [Google Scholar]
  13. Ding, X.; Zhang, X.; Ma, N.; Han, J.; Ding, G.; Sun, J. RepVGG: Making VGG-style ConvNets Great Again. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Virtual, 19–25 June 2021; pp. 13733–13742. [Google Scholar]
  14. Liu, Z.; Lin, Y.; Cao, Y.; Hu, H.; Wei, Y.; Zhang, Z.; Lin, S.; Guo, B. Swin Transformer: Hierarchical Vision Transformer using Shifted Windows. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), Virtual, 11–17 October 2021; pp. 10012–10022. [Google Scholar]
  15. Lin, T.Y.; Goyal, P.; Girshick, R.; He, K.; Doll’ar, P. Focal Loss for Dense Object Detection. In Proceedings of the IEEE International Conference on Computer Vision (ICCV), Venice, Italy, 22–29 October 2017; pp. 2980–2988. [Google Scholar]
  16. Redmon, J.; Divvala, S.; Girshick, R.; Farhadi, A. You Only Look Once: Unified, Real-Time Object Detection. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Las Vegas, NV, USA, 27–30 June 2016; pp. 779–788. [Google Scholar]
  17. Redmon, J.; Farhadi, A. YOLOv3: An Incremental Improvement. arXiv 2018, arXiv:1804.02767. [Google Scholar] [CrossRef]
  18. Wang, C.Y.; Bochkovskiy, A.; Liao, H.Y.M. YOLOv7: Trainable Bag-of-Freebies Sets New State-of-the-Art for Real-Time Object Detectors. arXiv 2022, arXiv:2207.02696. [Google Scholar]
  19. Ren, S.; He, K.; Girshick, R.; Sun, J. Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks. IEEE Trans. Pattern Anal. Mach. Intell. 2017, 39, 1137–1149. [Google Scholar] [CrossRef] [PubMed]
  20. Carion, N.; Massa, F.; Synnaeve, G.; Usunier, N.; Kirillov, A.; Zagoruyko, S. End-to-End Object Detection with Transformers. In Proceedings of the European Conference on Computer Vision (ECCV), Glasgow, UK, 23–28 August 2020; pp. 213–229. [Google Scholar]
  21. Vaswani, A.; Shazeer, N.; Parmar, N.; Uszkoreit, J.; Jones, L.; Gomez, A.N.; Kaiser, Ł.; Polosukhin, I. Attention is All You Need. In Proceedings of the 31st International Conference on Neural Information Processing Systems, Long Beach, CA, USA, 4–9 December 2017; Volume 30. [Google Scholar]
  22. Lv, W.; Zhao, Y.; Xu, S.; Wei, J.; Wang, G.; Cui, C.; Du, Y.; Dang, Q.; Liu, Y. DETRs Beat YOLOs on Real-time Object Detection. arXiv 2023, arXiv:2304.08069. [Google Scholar]
  23. Huang, S.; Lu, Z.; Cun, X.; Yu, Y.; Zhou, X.; Shen, X. DEIM: DETR with Improved Matching for Fast Convergence. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Nashville, TN, USA, 11–15 June 2025; pp. 15162–15171. [Google Scholar]
  24. Zhu, X.; Su, W.; Lu, L.; Li, B.; Wang, X.; Dai, J. Deformable DETR: Deformable Transformers for End-to-End Object Detection. In Proceedings of the International Conference on Learning Representations (ICLR), Virtual, 3–7 May 2021. [Google Scholar]
  25. Li, F.; Zhang, H.; Liu, S.; Guo, J.; Ni, L.M.; Zhang, L. DN-DETR: Accelerate DETR Training by Introducing Query DeNoising. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), New Orleans, LA, USA, 18–24 June 2022; pp. 13619–13627. [Google Scholar]
  26. Zhang, H.; Li, F.; Liu, S.; Zhang, L.; Su, H.; Zhu, J.; Ni, L.M.; Shum, H.Y. DINO: DETR with Improved DeNoising Anchor Boxes for End-to-End Object Detection. In Proceedings of the International Conference on Learning Representations (ICLR), Kigali, Rwanda, 1–5 May 2023. [Google Scholar]
  27. Liu, S.; Li, F.; Zhang, H.; Yang, X.; Qi, X.; Su, H.; Zhu, J.; Zhang, L. DAB-DETR: Dynamic Anchor Boxes are Better Queries for DETR. In Proceedings of the International Conference on Learning Representations (ICLR), Virtual, 25–29 April 2022. [Google Scholar]
  28. Yao, Z.; Ai, J.; Li, B.; Zhang, C. Efficient DETR: Improving End-to-End Object Detector with Dense Prior. arXiv 2021, arXiv:2104.01318. [Google Scholar]
  29. Lv, W.; Xu, S.; Zhao, Y.; Wang, G.; Wei, J.; Cui, C.; Du, Y.; Dang, Q.; Liu, Y. DETRs Beat YOLOs on Real-time Object Detection. arXiv 2024, arXiv:2304.08069v2. [Google Scholar] [CrossRef]
  30. Peng, Y.; Li, H.; Wu, P.; Zhang, Y.; Sun, X.; Wu, F. D-FINE: Redefine Regression Task in DETRs as Fine-grained Distribution Refinement. arXiv 2024, arXiv:2410.13842. [Google Scholar]
  31. Zhou, X.; Wang, D.; Krähenbühl, P. Objects as Points. arXiv 2019, arXiv:1904.07850. [Google Scholar]
  32. Wang, C.Y.; Liao, H.Y.M.; Wu, Y.H.; Chen, P.Y.; Hsieh, J.W.; Yeh, I.H. CSPNet: A New Backbone that can Enhance Learning Capability of CNN. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition Workshops (CVPRW), Seattle, WA, USA, 14–19 June 2020; pp. 390–391. [Google Scholar]
  33. Tan, M.; Le, Q. EfficientNet: Rethinking Model Scaling for Convolutional Neural Networks. In Proceedings of the International Conference on Machine Learning (ICML), Long Beach, CA, USA, 9–15 June 2019; pp. 6105–6114. [Google Scholar]
  34. Tan, M.; Pang, R.; Le, Q.V. EfficientDet: Scalable and Efficient Object Detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Seattle, WA, USA, 14–19 June 2020; pp. 10781–10790. [Google Scholar]
  35. Liu, S.; Huang, D.; Wang, Y. Learning Spatial Fusion for Single-Shot Object Detection. arXiv 2019, arXiv:1911.09516. [Google Scholar] [CrossRef]
  36. Ghiasi, G.; Lin, T.Y.; Le, Q.V. NAS-FPN: Learning Scalable Feature Pyramid Architecture for Object Detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Long Beach, CA, USA, 16–20 June 2019; pp. 7036–7045. [Google Scholar]
  37. He, K.; Zhang, X.; Ren, S.; Sun, J. Spatial Pyramid Pooling in Deep Convolutional Networks for Visual Recognition. IEEE Trans. Pattern Anal. Mach. Intell. 2015, 37, 1904–1916. [Google Scholar] [CrossRef] [PubMed]
  38. Wang, J.; Chen, K.; Xu, R.; Liu, Z.; Loy, C.C.; Lin, D. CARAFE: Content-Aware ReAssembly of FEatures. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), Seoul, Republic of Korea, 27–28 October 2019; pp. 3007–3016. [Google Scholar]
  39. Liu, G.; Dundar, A.; Shih, K.J.; Wang, T.C.; Reda, F.A.; Sapra, K.; Yu, Z.; Yang, X.; Tao, A.; Catanzaro, B. Partial Convolution for Padding, Inpainting, and Image Synthesis. IEEE Trans. Pattern Anal. Mach. Intell. 2023, 45, 6096–6110. [Google Scholar] [CrossRef] [PubMed]
  40. Zhou, S.; Zhou, H.; Qian, L. A Multi-scale Small Object Detection Algorithm SMA-YOLO for UAV Remote Sensing Images. Sci. Rep. 2025, 15, 9255. [Google Scholar] [CrossRef] [PubMed]
  41. Mei, J.; Zhu, W. BGF-YOLOv10: Small Object Detection Algorithm from Unmanned Aerial Vehicle Perspective Based on Improved YOLOv10. Sensors 2024, 24, 6911. [Google Scholar] [CrossRef] [PubMed]
  42. Xue, R.; Hua, S.; Xu, H. FECI-RTDETR: A Lightweight Unmanned Aerial Vehicle Infrared Small Object Detector Algorithm Based on RT-DETR. IEEE Access 2025, 13, 9578–9591. [Google Scholar] [CrossRef]
  43. Gu, A.; Goel, K.; Ré, C. Efficiently Modeling Long Sequences with Structured State Spaces. In Proceedings of the International Conference on Learning Representations (ICLR), Virtual, 25–29 April 2022. [Google Scholar]
  44. Gu, A.; Dao, T. Mamba: Linear-Time Sequence Modeling with Selective State Spaces. arXiv 2023, arXiv:2312.00752. [Google Scholar] [CrossRef]
  45. Zhu, L.; Liao, B.; Zhang, Q.; Wang, X.; Liu, W.; Wang, X. Vision Mamba: Efficient Visual Representation Learning with Bidirectional State Space Model. In Proceedings of the Forty-first International Conference on Machine Learning (ICML), Vienna, Austria, 21–27 July 2024. [Google Scholar]
  46. Liu, Y.; Tian, Y.; Zhao, Y.; Yu, H.; Xie, L.; Wang, Y.; Ye, Q.; Jiao, J.; Liu, Y. VMamba: Visual State Space Model. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS), Vancouver, BC, Canada, 10–15 December 2024. [Google Scholar]
  47. Wang, Z.; Li, C.; Xu, H.; Zhu, X.; Li, H. Mamba YOLO: A Simple Baseline for Object Detection with State Space Model. In Proceedings of the AAAI Conference on Artificial Intelligence, Philadelphia, PA, USA, 25 February–4 March 2025; Volume 39, pp. 8205–8213. [Google Scholar]
  48. Wu, S.; Lu, X.; Guo, C. YOLOv5_mamba: Unmanned Aerial Vehicle Object Detection Based on Bidirectional Dense Feedback Network and Adaptive Gate Feature Fusion. Sci. Rep. 2024, 14, 22396. [Google Scholar] [CrossRef] [PubMed]
  49. Zhao, Z.; He, P. YOLO-Mamba: Object Detection Method for Infrared Aerial Images. Signal Image Video Process. 2024, 18, 8793–8803. [Google Scholar] [CrossRef]
  50. Wu, S.; Lu, X.; Guo, C.; Guo, H. Accurate UAV Small Object Detection Based on HRFPN and EfficientVMamba. Sensors 2024, 24, 4966. [Google Scholar]
  51. Wu, S.; Lu, X.; Guo, C.; Guo, H. MV-YOLO: An Efficient Small Object Detection Framework Based on Mamba. IEEE Trans. Geosci. Remote Sens. 2025, 63, 1–14. [Google Scholar] [CrossRef]
  52. Shi, N.; Yang, Z.; Yang, G.; Li, K.; Yang, Z.; An, J.; Li, S.; Zhang, L.; Jing, S. Super Mamba Feature Enhancement Framework for Small Object Detection. Sci. Rep. 2025, 15, 37148. [Google Scholar] [CrossRef] [PubMed]
  53. Ren, K.; Wu, X.; Xu, L.; Wang, L. RemoteDet-Mamba: A Hybrid Mamba-CNN Network for Multi-modal Object Detection in Remote Sensing Images. arXiv 2024, arXiv:2410.13532. [Google Scholar]
  54. Shen, J.; He, J.; Liu, Q.; Zhang, Z.; Wang, G.; Lu, D. MSDF-Mamba: Mutual-Spectrum Perception Deformable Fusion Mamba for Drone-Based Visible-Infrared Cross-Modality Vehicle Detection. Remote Sens. 2025, 17, 4037. [Google Scholar] [CrossRef]
  55. Du, D.; Zhu, P.; Wen, L.; Bian, X.; Lin, H.; Hu, Q.; Peng, T.; Zheng, J.; Wang, X.; Zhang, Y.; et al. VisDrone-DET2019: The Vision Meets Drone Object Detection in Image Challenge Results. In Proceedings of the IEEE/CVF International Conference on Computer Vision Workshops (ICCVW), Seoul, Republic of Korea, 27–28 October 2019; pp. 213–226. [Google Scholar]
  56. Liu, W.; Lu, H.; Fu, H.; Cao, Z. Learning to Upsample by Learning to Sample. In Proceedings of the ICCV, Paris, France, 2–6 October 2023. [Google Scholar]
Figure 1. Overall architecture of HMF-DEIM. The model consists of four main components: a Backbone for multi-scale feature extraction (including CASU, RepNCSPELAN4 integrated with MDFB, CAV, and Transformer modules), a Decoder with embedding, multi-head attention, and prediction heads for score and box outputs, a DEIM-Decoder that further refines detection results through transformer layers.
Figure 1. Overall architecture of HMF-DEIM. The model consists of four main components: a Backbone for multi-scale feature extraction (including CASU, RepNCSPELAN4 integrated with MDFB, CAV, and Transformer modules), a Decoder with embedding, multi-head attention, and prediction heads for score and box outputs, a DEIM-Decoder that further refines detection results through transformer layers.
Sensors 26 02187 g001
Figure 2. Architecture of HAFMB. Top is the main pipeline with Conv 1 × 1 , DWConv 3 × 3 , MSPAF, FFN, and feature concatenation. Bottom is detailed structure of MSPAF, including partial self-attention, identity mapping, and MPCS module with residual connection.
Figure 2. Architecture of HAFMB. Top is the main pipeline with Conv 1 × 1 , DWConv 3 × 3 , MSPAF, FFN, and feature concatenation. Bottom is detailed structure of MSPAF, including partial self-attention, identity mapping, and MPCS module with residual connection.
Sensors 26 02187 g002
Figure 3. Architecture of MDFB. Input features are processed by Conv 1 × 1 , then split into three branches to concatenate. InceptionDWBlock with parallel Conv 1 × 11 , Conv 11 × 1 , and DWConv 3 × 3 branches.
Figure 3. Architecture of MDFB. Input features are processed by Conv 1 × 1 , then split into three branches to concatenate. InceptionDWBlock with parallel Conv 1 × 11 , Conv 11 × 1 , and DWConv 3 × 3 branches.
Sensors 26 02187 g003
Figure 4. Architecture of Channel-Adaptive Shift Upsampling (CASU). Top is the main pipeline consisting of Upsample, Conv 3 × 3 with BN and ReLU, Shift Channel Mixing (SCM), and PWConv 1 × 1 . Bottom is detailed structure of SCM, which splits input into four branches with Roll Down, Roll Up, Roll Right, and Roll Left operations, followed by concatenation. Right is visualization of the element shifting mechanism for each roll direction.
Figure 4. Architecture of Channel-Adaptive Shift Upsampling (CASU). Top is the main pipeline consisting of Upsample, Conv 3 × 3 with BN and ReLU, Shift Channel Mixing (SCM), and PWConv 1 × 1 . Bottom is detailed structure of SCM, which splits input into four branches with Roll Down, Roll Up, Roll Right, and Roll Left operations, followed by concatenation. Right is visualization of the element shifting mechanism for each roll direction.
Sensors 26 02187 g004
Figure 5. Architecture of DRFD. Input features are first processed by DWConv 3 × 3 , then split into two paths. Upper features are sliced into 4 pieces and concatenated, followed by Conv 1 × 1 . Lower parallel branches of Conv 3 × 3 with BN and GELU, and Maxpool with BN, then concatenated. Both paths are merged via Conv 1 × 1 with ReLU to produce the output.
Figure 5. Architecture of DRFD. Input features are first processed by DWConv 3 × 3 , then split into two paths. Upper features are sliced into 4 pieces and concatenated, followed by Conv 1 × 1 . Lower parallel branches of Conv 3 × 3 with BN and GELU, and Maxpool with BN, then concatenated. Both paths are merged via Conv 1 × 1 with ReLU to produce the output.
Sensors 26 02187 g005
Figure 6. Architecture of FocusFeature. Multi-scale inputs (L, M, S) are processed through Feature Extraction—L via DRFD, M via Conv 1 × 1 , and S via CASU and Conv 1 × 1 —then concatenated. Then parallel multi-scale DWConv branches ( DWConv 5 × 5 , DWConv 7 × 7 , DWConv 9 × 9 , DWConv 11 × 11 ), followed by concatenation, PWConv 1 × 1 , and Conv 1 × 1 for output.
Figure 6. Architecture of FocusFeature. Multi-scale inputs (L, M, S) are processed through Feature Extraction—L via DRFD, M via Conv 1 × 1 , and S via CASU and Conv 1 × 1 —then concatenated. Then parallel multi-scale DWConv branches ( DWConv 5 × 5 , DWConv 7 × 7 , DWConv 9 × 9 , DWConv 11 × 11 ), followed by concatenation, PWConv 1 × 1 , and Conv 1 × 1 for output.
Sensors 26 02187 g006
Figure 7. Dense small object scenario.
Figure 7. Dense small object scenario.
Sensors 26 02187 g007
Figure 8. Complex background scenario.
Figure 8. Complex background scenario.
Sensors 26 02187 g008
Figure 9. Extreme scale variation scenario.
Figure 9. Extreme scale variation scenario.
Sensors 26 02187 g009
Figure 10. Feature heatmap comparison in tiny object scenarios. (Left) Original image (red boxes marking dense small object regions). (Middle) DEIM-D-Fine-S heatmap. (Right) HMF-DEIM heatmap. Darker colors in the heatmap indicate higher response intensity of the model to that region.
Figure 10. Feature heatmap comparison in tiny object scenarios. (Left) Original image (red boxes marking dense small object regions). (Middle) DEIM-D-Fine-S heatmap. (Right) HMF-DEIM heatmap. Darker colors in the heatmap indicate higher response intensity of the model to that region.
Sensors 26 02187 g010
Table 1. Instance distribution of VisDrone2019 test set by category and size.
Table 1. Instance distribution of VisDrone2019 test set by category and size.
CategoryTotal InstancesSmallMediumLarge
pedestrian21,00618,848206692
people637660243493
bicycle130210662315
car28,07415,11211,8511111
van577129062675190
truck26597771445437
tricycle53026324918
awning-tricycle59927430025
bus29407021715523
motor584548449956
Total75,10250,81621,8762410
Table 2. Model training configuration parameters.
Table 2. Model training configuration parameters.
Parameter CategoryParameter NameSetting Value
Optimization SettingsOptimizerAdamW
Initial Learning Rate 4 × 10 4
Weight Decay 1 × 10 4
Learning Rate ScheduleCosine Annealing
Warmup Iterations2000
Training ParametersTraining Epochs300 Epochs
Batch Size4
Input Size 640 × 640
Data AugmentationEarly Augmentation (First 280 Epochs)Mosaic
Late Augmentation (Last 20 Epochs)Standard Augmentation
Table 3. Comprehensive comparison of different object detection models on the VisDrone2019 test set.
Table 3. Comprehensive comparison of different object detection models on the VisDrone2019 test set.
ModelInput SizemAP50mAP50–95APSAPMAPLParams (M)GFLOPs
RT-DETR-R18(640, 640)0.3630.2080.1130.3050.41319.8957.0
DINO-R50(750, 1333)0.4450.2530.1500.3710.50347.56274.0
Faster-RCNN-R50-FPN(768, 1344)0.3290.1940.0950.3090.42941.39208.0
ATSS-R50-FPN-DyHead(768, 1344)0.3380.2040.1000.3170.48538.91110.0
YOLOv8-S(640, 640)0.3070.1730.0780.2690.37211.1328.5
YOLOv8-M(640, 640)0.3320.1900.0900.2940.41725.8578.7
YOLOv10-S(640, 640)0.3230.1790.0860.2780.3617.2221.4
YOLOv10-M(640, 640)0.3450.1950.0970.3000.41415.3258.9
YOLOv11-S(640, 640)0.3130.1760.0800.2720.3649.4221.3
YOLOv11-M(640, 640)0.3500.2030.0980.3120.41320.0467.7
YOLOv12-M(640, 640)0.3360.1920.0940.2980.38620.1167.2
RTMDet-Tiny(640, 640)0.3120.1840.0770.2880.4454.888.0
FBRT-YOLO-M(640, 640)0.3440.1960.0940.3090.4217.3658.7
D-Fine-S(640, 640)0.3940.2270.1280.3310.46810.1824.9
D-Fine-M(640, 640)0.4100.2380.1330.3490.47919.1956.4
DEIM-D-Fine-S (Baseline)(640, 640)0.3840.2190.1220.3210.39710.1824.9
DEIM-D-Fine-M(640, 640)0.4030.2330.1310.3390.45019.1956.4
DEIMV2-S(640, 640)0.3630.2040.1090.2990.4519.6725.4
HMF-DEIM (Ours)(640, 640)0.4050.2350.1480.3460.48911.8734.1
Table 4. Detailed performance comparison by category on VisDrone2019 (COCO metrics).
Table 4. Detailed performance comparison by category on VisDrone2019 (COCO metrics).
CategoryAvg. SizeDEIM-D-Fine-S (Baseline)HMF-DEIM (Ours)Improvement
(Pixels) AP AP50 AP75 AP AP50 AP75 ΔAP
pedestrian22 × 480.1450.3620.0950.1620.3850.107+11.7%
people18 × 420.0950.2710.0450.1060.2900.050+11.6%
bicycle28 × 360.0710.1650.0460.0790.1780.051+11.3%
car45 × 680.4980.7790.5610.5220.7980.583+4.8%
van52 × 780.2950.4400.3430.3130.4560.361+6.1%
truck68 × 960.2510.3990.2810.2670.4150.297+6.4%
tricycle32 × 480.1310.2490.1400.1420.2630.148+8.4%
awning-tricycle36 × 520.1250.2150.1470.1360.2280.156+8.8%
bus88 × 1240.4200.5950.4810.4380.6120.497+4.3%
motor26 × 420.1720.4050.1160.1850.4230.124+7.6%
Average-0.2190.3840.2260.2350.4050.237+7.3%
Table 5. Component ablation experiment results (VisDrone2019 test set).
Table 5. Component ablation experiment results (VisDrone2019 test set).
No.Model ConfigurationBackboneScale Config (Feature/Head)MDFBHAFMBCASUMCAFDRFDFFmAP50APsParams (M)GFLOPsΔParams (M)ΔGFLOPs
1BaselineHGNetv2Feat: P3-P5/Head: P3-P50.3840.12210.1824.9
2+ Remove P5HGNetv2Feat: P3-P4/Head: P3-P40.3890.1299.8421.5−0.34−3.4
3+ Custom BackboneCustomFeat: P2-P4/Head: P3-P40.3930.13510.2125.2+0.37+3.7
4+ CASUCustomFeat: P2-P4/Head: P3-P40.3970.14010.4826.7+0.27+1.5
5+ MCAFCustomFeat: P2-P4/Head: P3-P40.4000.14410.8929.2+0.41+2.5
6+ DRFDCustomFeat: P2-P4/Head: P3-P40.4030.14611.2431.2+0.35+2.0
7HMF-DEIMCustomFeat: P2-P4/Head: P3-P40.4050.14811.8734.1+0.63+2.9
Table 6. Ablation study on channel splitting ratio α in HAFMB (VisDrone2019 test set).
Table 6. Ablation study on channel splitting ratio α in HAFMB (VisDrone2019 test set).
Splitting Ratio α Global/LocalmAP50mAP50–95APsParams (M)
0.2525%/75%0.3990.2300.14111.52
0.5 (default)50%/50%0.4050.2350.14811.87
0.7575%/25%0.4020.2330.14612.23
Table 7. Comparison of different upsampling methods in HMF-DEIM (VisDrone2019 test set).
Table 7. Comparison of different upsampling methods in HMF-DEIM (VisDrone2019 test set).
Upsampling MethodmAP50mAP50–95APsParams(M)GFLOPs
Nearest0.3930.2260.13611.6232.8
Bilinear0.3950.2280.13811.6232.9
CARAFE [38]0.4010.2320.14412.3536.4
DySample [56]0.4030.2340.14612.1835.7
CASU (Ours)0.4050.2350.14811.8734.1
Table 8. Performance comparison on the AI-TOD-v2 dataset.
Table 8. Performance comparison on the AI-TOD-v2 dataset.
ModelP_ValR_Val mAP 50 Val mAP 50 : 95 Val F1_ValP_TestR_Test mAP 50 Test mAP 50 : 95 Test F1_Test
YOLOv11-S0.5940.4480.4380.1720.5110.5860.4310.4180.1620.497
D-Fine-S0.6520.5330.5450.2350.5870.6450.5180.5280.2240.575
DEIM-D-Fine-S (Baseline)0.6580.5420.5510.2380.5940.6510.5280.5240.2210.583
HMF-DEIM (Ours)0.6890.6180.6120.2670.6520.6820.6030.5860.2480.640
Table 9. Performance comparison on the DOTA-v1.5 validation set (HBB mode).
Table 9. Performance comparison on the DOTA-v1.5 validation set (HBB mode).
ModelP_ValR_Val mAP 50 Val mAP 50 : 95 Val F1_Val
YOLOv11-S0.6320.5650.5760.3520.597
D-Fine-S0.6880.6310.6490.4120.658
DEIM-D-Fine-S (Baseline)0.6940.6380.6580.4180.665
HMF-DEIM (Ours)0.7180.6890.7120.4620.703
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Ma, L.; Luo, Y.; Xu, J. HMF-DEIM: High-Fidelity Multi-Domain Fusion Transformer for UAV Small Object Detection. Sensors 2026, 26, 2187. https://doi.org/10.3390/s26072187

AMA Style

Ma L, Luo Y, Xu J. HMF-DEIM: High-Fidelity Multi-Domain Fusion Transformer for UAV Small Object Detection. Sensors. 2026; 26(7):2187. https://doi.org/10.3390/s26072187

Chicago/Turabian Style

Ma, Lan, Yun Luo, and Jiajun Xu. 2026. "HMF-DEIM: High-Fidelity Multi-Domain Fusion Transformer for UAV Small Object Detection" Sensors 26, no. 7: 2187. https://doi.org/10.3390/s26072187

APA Style

Ma, L., Luo, Y., & Xu, J. (2026). HMF-DEIM: High-Fidelity Multi-Domain Fusion Transformer for UAV Small Object Detection. Sensors, 26(7), 2187. https://doi.org/10.3390/s26072187

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop