Next Article in Journal
Centralized Evolutionary Optimization and Decentralized Agent-Based Scheduling for Open-Pit Mine Dispatching
Previous Article in Journal
Damage Evolution and Energy Dissipation Mechanism of Sandstone Subjected to Freeze–Thaw Action: Effects of Moisture Conditions
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

SFCD-Det: A Spatial–Frequency Collaborative Architecture for UAV Infrared Small-Object Detection

College of Computer Science and Technology, Guizhou University, Guiyang 550025, China
*
Author to whom correspondence should be addressed.
Appl. Sci. 2026, 16(15), 7594; https://doi.org/10.3390/app16157594
Submission received: 4 July 2026 / Revised: 27 July 2026 / Accepted: 28 July 2026 / Published: 30 July 2026
(This article belongs to the Section Computing and Artificial Intelligence)

Abstract

UAV infrared small-object detection is challenging because targets occupy few pixels, provide weak thermal contrast, and are easily confused with cluttered backgrounds. Although convolutional and Transformer-based detectors improve local representation and global context modeling, their predominantly spatial processing pipelines do not explicitly prevent fragile target responses from being attenuated during early encoding and multi-scale aggregation. To address this gap, we propose SFCD-Det, a spatial–frequency collaborative detector organized around a progressive preservation–purification–coordination methodology. A Wavelet-Transform Stem preserves low-frequency structures and localized high-frequency details before backbone encoding. A Feature Purification Layer regulates adjacent-scale interactions and suppresses clutter-dominated responses before aggregation, while a Spatial–Frequency Coordinated Feature Pyramid reconstructs multi-scale features using shallow spatial anchors, purified intermediate responses, and deep spatial–frequency priors. Experiments on four benchmarks show that SFCD-Det consistently outperforms the DEIM-N baseline. It achieves 62.6% mAP and 95.1% mAP50 on HIT-UAV, 41.4% and 86.4% on IRSTD-1K, 16.8% and 46.8% on RGBTDronePerson, and 34.1% and 88.0% on USOD, respectively. These results demonstrate that SFCD-Det strengthens weak-target representation in UAV infrared imagery. Its additional gains on USOD suggest that the frequency mechanism may also benefit weak and spatially localized responses in visible imagery under low illumination or shadow.

1. Introduction

Infrared object detection from UAV platforms has attracted increasing attention because of its importance in night-time surveillance, traffic monitoring, border patrol, and search-and-rescue applications. Compared with fixed ground-based sensors, UAV platforms provide flexible viewpoints, wide-area coverage, and rapid field application, making them highly suitable for complex outdoor missions. Reliable UAV operation requires both robust flight control under disturbances [1] and accurate aerial perception under complex outdoor conditions, which highlights the need for dependable infrared object detection from UAV platforms.
However, UAV-view infrared imagery differs substantially from ground-based or conventional visible-light images. Due to the elevated imaging perspective, objects are often observed from top-down or oblique angles, resulting in compressed shapes, limited boundary details, and large variations in apparent scale. Thermal imaging further weakens texture and color information, so targets are mainly distinguished by radiation intensity and local structural contrast. In addition, platform motion, changing flight altitude, and complex ground materials can cause unstable target appearances across frames and scenes. These characteristics make UAV infrared detection highly dependent on the preservation of weak spatial structures and reliable multi-scale representation.
Modern detectors are mainly built on convolutional networks and vision Transformers [2], but differ in how they generate and refine object predictions. Proposal-based frameworks, represented by Faster R-CNN [3] and Cascade R-CNN [4], identify candidate regions before refining their categories and locations. The YOLO family [5,6,7,8] instead performs direct prediction and is widely adopted in time-sensitive detection tasks. Transformer-based detectors, including RT-DETR [9], RT-DETRv2 [10], DINO [11], and D-FINE [12], further improve contextual reasoning by establishing interactions between spatially separated image regions.
Within this end-to-end Transformer paradigm, DEIM [13] improves supervision for small and densely distributed objects through dense one-to-one matching and a matchability-aware loss. Its end-to-end prediction process also avoids erroneous suppression caused by conventional post-processing, which is beneficial for densely clustered targets in aerial imagery. These properties make DEIM a suitable Transformer-based baseline for investigating UAV infrared small-object detection.
Despite these advances, DEIM and other modern detectors remain limited when directly applied to UAV infrared imagery. In these thermal scenes, targets usually appear at extremely small scales and often exhibit weak contrast, blurred boundaries, and severe background interference. Whether based on convolutional backbones, one-stage YOLO-style direct prediction, or Transformer attention, existing pipelines still construct their representations mainly through spatial encoding and hierarchical downsampling. YOLO-style detectors are efficient for real-time prediction, but their spatial feature hierarchies may compress fragile thermal cues too early. Transformer attention is effective for modeling long-range dependencies, but it operates on features that have already passed through early spatial encoding and therefore cannot fully compensate for target cues weakened before global interaction.
This spatial representation process leads to three cascading issues. In other words, the difficulty is not caused by a single network layer, but by the cumulative effect of early compression, intermediate feature mixing, and final pyramid aggregation. A small thermal target may first lose boundary details, then be mixed with clutter responses at neighboring scales, and finally become diluted during repeated top-down or bottom-up fusion. First, during the initial network encoding phase, the fragile structural details of tiny targets are easily blurred and degraded by conventional spatial operations. Second, during hierarchical feature extraction, the lack of explicit noise filtering allows severe thermal background clutter to propagate across adjacent scales. Finally, traditional sequential multi-scale aggregation pathways easily dilute the already weak target signatures, failing to effectively coordinate deep spatial–frequency priors with shallow spatial features.
Consequently, the unresolved methodological gap is how to preserve fragile target responses during early encoding, purify them from adjacent-scale background interference, and coordinate them with contextual guidance before multi-scale reconstruction.
These observations motivate SFCD-Det, a progressive preservation–purification–coordination framework for UAV infrared small-object detection. Specifically, the proposed framework preserves fragile cues before backbone extraction, purifies adjacent-scale responses before aggregation, and reconstructs the feature pyramid through coordinated spatial and frequency guidance. The main contributions of this work are summarized as follows:
  • Progressive Spatial–Frequency Methodology. We propose SFCD-Det based on a progressive preservation–purification–coordination methodology for UAV infrared small-object detection. Rather than applying frequency processing as an isolated enhancement operation, the proposed methodology incorporates it across early encoding, pre-aggregation purification, and multi-scale reconstruction to progressively protect weak target responses.
  • Early Spatial–Frequency Decoupled Encoding. We introduce an early spatial–frequency encoding strategy, implemented through WTStem, to reduce target-cue attenuation before backbone feature extraction. By combining spatial-to-depth rearrangement with high- and low-frequency decoupling, WTStem retains low-frequency structural information and high-frequency target details in the initial representation.
  • Pre-Aggregation Adjacent-Scale Purification. We propose a pre-aggregation purification strategy, implemented through FPL with Frequency-Dynamic Aligned Fusion (FDAF), to regulate information exchanged between adjacent feature levels. By modeling adjacent-scale interactions, FPL suppresses background clutter and refines target-related responses before multi-scale feature reconstruction.
  • Spatial–Frequency Coordinated Pyramid Reconstruction. We introduce a coordinated reconstruction strategy, implemented through SFCFP, that integrates shallow spatial anchors, purified intermediate responses, and deep spatial–frequency priors to construct discriminative multi-scale representations.

2. Related Work

2.1. UAV-Based Infrared Object Detection

Recent progress in deep learning has advanced aerial thermal perception, with architectures increasingly designed for weak contrast and cluttered backgrounds. Lightweight detectors such as ITD-YOLOv8 [14] and LRDS-YOLO [15] improve infrared target perception by redesigning backbone structures and feature interaction mechanisms for aerial platforms. For weak and small thermal targets, BDK-YOLOv8 [16] and YOLO-UIR [17] strengthen discriminative representation through enhanced feature modeling. Transformer-based detectors, including PHSI-RTDETR [18] and DISO-DETR [19], exploit long-range dependency modeling to capture richer contextual cues for small-object detection. More recently, RMT-YOLOv9s [20] improve aerial infrared small-object detection by combining a refined backbone with enhanced multi-scale fusion. Although these studies improve UAV infrared detection from backbone design, attention modeling, and feature fusion perspectives, most of them still operate after weak target cues have entered hierarchical encoding. Early protection of fragile thermal responses before strong spatial compression therefore remains insufficiently explored.

2.2. Spatial–Frequency Combination Methods

The challenge of background interference in the spatial domain has led to the promising development of spatial–frequency fusion strategies. WaveViT [21] demonstrates the effectiveness of unifying wavelet transforms with vision Transformers for multi-scale representation. Boundary-aware methods like SFLNet [22] and SFCANet [23] refine edge features, while GSFANet [24] and FM-Net [25] utilize spectral decomposition to distinguish target details from background clutter. Recent enhancement-oriented studies, such as the edge-prior guided dual-branch network reported by Pan et al. [26], further confirm that explicit structural guidance is beneficial for suppressing cluttered infrared backgrounds. Recent works like DHiF [27] and the frequency and spatial feature fusion method proposed by Zhu et al. [28] further extend these capabilities to complex infrared scenarios. However, these methods primarily focus on frequency injection, structural enhancement, and multi-scale fusion, with less emphasis on statistical-adaptive feature purification. As a result, weak infrared small targets may still be insufficiently separated from cluttered backgrounds under severe thermal inconsistency.

2.3. Feature Pyramid Networks

Feature pyramid networks serve as the primary paradigm for cross-scale interaction and hierarchical feature reconstruction in object detection. Since the original FPN architecture [29], a series of variants have been proposed to strengthen information flow and alleviate feature degradation. These include path-aggregation architectures like BiFPN [30], asymptotic fusion designs like AFPN [31], as well as recent advanced routing and alignment mechanisms such as Gold-YOLO [32], HS-FPN [33], HyperACE [34], and A3FPN [35]. For aerial small-object detection, CFPT [36] further enhances cross-layer interaction by introducing an upsampler-free feature pyramid Transformer tailored to aerial imagery. While highly successful in generic optical scenarios, these spatial-domain progressive architectures struggle with thermal infrared small-object detection. Specifically, repeated spatial upsampling and top-down aggregation can dilute weak thermal signatures, while the lack of explicit cue preservation and clutter purification before pyramid reconstruction allows background interference to propagate across feature levels.

3. Methodologies

3.1. Overall Structure

The overall architecture of SFCD-Det is shown in Figure 1. Built upon DEIM-N, the detector retains the backbone–encoder–decoder pipeline and introduces three progressive components for aerial infrared small-object detection: WTStem, FPL, and SFCFP.
Given an infrared image, WTStem preserves informative target cues before the backbone feature extraction stage through spatial-to-depth rearrangement and high- and low-frequency decoupling. The backbone then produces hierarchical features { S 2 , S 3 , S 4 , S 5 } .
Before pyramid reconstruction, FPL refines adjacent-scale representations through frequency-dynamic aligned fusion. Specifically, it operates on ( S 2 , S 3 ) , ( S 3 , S 4 ) , and ( S 4 , S 5 ) to generate purified layers S 3 , S 4 , and S 5 , respectively. In this stage, spatial-detail guidance and spatial–frequency modulation jointly enhance target responses while suppressing background clutter.
Based on { S 2 , S 3 , S 4 , S 5 } , SFCFP reconstructs the final feature pyramid by integrating shallow spatial anchors via an S2 spatial distribution path, spatial–frequency prior guidance via an S5 spatial–frequency prior broadcasting path, and purified intermediate responses via skip injections. The resulting coordinated multi-scale features are then fed into the decoder for object classification and localization.
In this way, SFCD-Det does not rely on a single enhancement operation but distributes the preservation, purification, and reconstruction of weak target cues across different stages of the detector.

3.2. Wavelet-Transform Stem

From a signal-processing perspective, low-frequency components describe coarse thermal structures, whereas high-frequency components capture local variations and boundary details [37,38]. Unlike global transforms such as FFT and DCT, wavelet decomposition retains spatial localization while separating frequency components, making it suitable for small targets embedded in nonuniform infrared backgrounds.
WTStem is designed to reduce the irreversible loss of fragile thermal signatures during early downsampling in conventional spatial stems, as illustrated in Figure 2. By embedding discrete wavelet decomposition at the input stage, WTStem reformulates initial feature extraction as a spatial–frequency decoupled encoding process, aiming to retain low-frequency structural continuity and high-frequency target-related variations before the features enter the backbone.
Given an infrared image X R C 0 × H × W , a space-to-depth mapping R s d ( · ) first compresses the spatial resolution by rearranging local pixels into the channel dimension, yielding X s 2 d = R s d ( X ) . A 2D Haar discrete wavelet transform is then applied to decouple the rearranged representation into four orthogonal frequency sub-bands. Haar wavelets are selected for their compact support and orthogonality, which limit spatial spreading and preserve localized responses more effectively than longer-support families during early downsampling.
Y L L , Y L H , Y H L , Y H H = W haar X s 2 d ,
where W haar ( · ) denotes a one-level 2D Haar discrete wavelet transform. Y L L is the low-frequency approximation component, while Y L H , Y H L , and Y H H are the three high-frequency directional components. After the space-to-depth rearrangement and one-level Haar decomposition, each sub-band has a spatial size of H / 4 × W / 4 , while local information is transferred into channel and frequency sub-band representations.
Directly mixing these components may weaken fragile target responses during early representation learning. Therefore, WTStem adopts a dual-branch strategy to process low-frequency structures and high-frequency details separately. In the low-frequency branch, Y L L is first mapped by a channel projection P ( · ) and then refined by a residual edge enhancement unit E ( · ) :
L = P ( Y L L ) , F L = L + γ E ( L )
where γ is a learnable scalar, and F L denotes the enhanced low-frequency representation.
In the high-frequency branch, the three directional components are calibrated by learnable sub-band-wise coefficients α h , α v , and α d , which are shared across channels and spatial positions. The weighted components are concatenated and processed by the high-frequency filtering block H ( · ) :
Y ˜ H = α h Y L H     α v Y H L     α d Y H H , F H = H ( Y ˜ H )
where α h , α v , and α d are learnable scalar coefficients for the horizontal, vertical, and diagonal sub-bands, respectively. The notation ‖ represents channel-wise concatenation, and F H is the filtered high-frequency representation.
The low- and high-frequency responses are integrated as Z = F L     F H . A channel attention mechanism then recalibrates Z using dynamic weights:
W c a = σ W e δ W r P gap ( Z )
where P gap ( · ) denotes global average pooling, δ ( · ) and σ ( · ) denote the ReLU and Sigmoid functions, respectively, and W r and W e are the channel reduction and expansion projections. Finally, the preserved stem representation is obtained via a fusion mapping f fuse ( · ) composed of successive 3 × 3 convolutions:
F stem = f fuse W c a Z
where ⊙ denotes the Hadamard product. The resulting F stem provides a detail-preserved initial representation for subsequent hierarchical encoding. Since the high- and low-frequency components have been separately processed before fusion, the backbone receives features with clearer structural continuity and more explicit edge details. This improves the initial feature basis without changing the overall backbone hierarchy.

3.3. Frequency-Dynamic Aligned Fusion

The Frequency-Dynamic Aligned Fusion (FDAF) module, illustrated in Figure 3, is designed as a basic adjacent-scale interaction unit used in FPL. Its role is to model complementary spatial and frequency responses between two neighboring feature levels, rather than acting as an independent purification stage. Given adjacent feature maps X 0 and X 1 , FDAF first performs spatial alignment and concatenates them along the channel dimension to form a unified representation X c a t R 2 C × H × W .
In the spatial branch, local geometric responses X l o c are extracted by depth-wise convolution, and the spatial representation X s p is obtained through residual attention:
X s p = X c a t + α X l o c σ μ c ( | X l o c | )
where α is a learnable channel-wise scaling vector, and μ c ( · ) denotes channel-wise averaging. This branch preserves local continuity and positional responses during adjacent-scale interaction.
The frequency branch then converts X c a t to the spectral domain with a 2D FFT F ( · ) . Its amplitude A is adjusted by the learnable exponent η , whereas the phase ϕ is kept unchanged to retain structural layout.
X f r = F r 1 ( A + ϵ ) η e j ϕ
The global channel prior P c h is generated from the globally pooled X c a t through a learnable linear projection and Sigmoid normalization:
P c h = σ W p P gap ( X c a t ) + b p
where P gap ( · ) denotes global average pooling, W p is a learnable channel projection matrix, and b p is the corresponding bias term. A dynamic frequency gate G f r is then generated by combining frequency energy with this global channel prior:
G f r = σ β ( P c h X f r 2 ) + b f
where β and b f are learnable channel-wise parameters. Because high-frequency energy may also arise from clutter and sensor noise, G f r conditions frequency responses on global channel statistics rather than enhancing them indiscriminately, while the residual branch retains complementary information. This design is consistent with recent frequency-domain noise-suppression studies in infrared small-target detection, where purifying high-frequency components is used to reduce noise interference and false alarms [39].
Guided by G f r , FDAF constructs a frequency-enhanced signal component X s i g alongside a complementary residual component X r e s :
X s i g = X s p 1 + M G f r , X r e s = X c a t X s i g ,
where M is a learnable channel-wise modulation tensor.
To adaptively balance the two components, a spatial–frequency response map P f s R 1 × H × W is estimated from both spatial and frequency responses:
P f s = σ ( k ( σ ( μ c ( | X s p | ) ) + μ c ( G f r ) ) + b f s ) ,
where k and b f s are learnable scalar parameters. The interacted representation is then synthesized by the following equation:
X i n t = X s i g ( 1 + θ P f s ) + X r e s ( 1 λ P f s ) ,
where θ and λ are bounded learnable scalar coefficients for the signal and residual branches, respectively.
Finally, X i n t is split along the channel dimension into modulation masks W 0 and W 1 to enhance the original inputs bidirectionally:
X ˜ 0 = X 0 + X 1 σ ( W 0 ) , X ˜ 1 = X 1 + X 0 σ ( W 1 ) .
The final FDAF output is obtained by concatenating the enhanced features and applying an output projection f out ( · ) :
Y = f out X ˜ 0     X ˜ 1 .
Through reciprocal modulation, FDAF serves as the adjacent-scale interaction unit embedded in FPL.

3.4. Feature Purification Layer

Based on FDAF, the Feature Purification Layer (FPL) acts as a pre-fusion hub between the encoder projections and the final multi-scale reconstruction module. Unlike FDAF, which focuses on adjacent-scale interaction, FPL emphasizes feature purification by organizing multiple FDAF units to refine hierarchical representations before pyramid aggregation.
As illustrated in Figure 4, FPL deploys three FDAF units on adjacent feature pairs ( S 2 , S 3 ) , ( S 3 , S 4 ) , and ( S 4 , S 5 ) . In each pair, the high-resolution feature provides spatial-detail guidance, while the lower-resolution feature contributes stronger contextual responses. The purified feature maps are generated as follows:
S l = FDAF ( S l 1 , S l ) , l { 3 , 4 , 5 } .
Unlike conventional methods that directly aggregate multi-scale features, FPL performs pre-reconstruction purification to reduce background clutter and cross-scale inconsistencies before large-scale feature propagation. The resulting purified features { S 3 , S 4 , S 5 } provide cleaner and target-sensitive inputs for SFCFP. By filtering adjacent-scale representations before large-scale aggregation, FPL reduces the risk that background clutter is propagated across multiple levels. Meanwhile, the adjacent interaction preserves complementary details from neighboring resolutions, which helps maintain the continuity of weak target responses.
FPL operates on adjacent feature levels because neighboring representations have relatively close spatial resolutions and stronger semantic correspondence, which facilitates reliable alignment during purification. In contrast, direct interaction between non-adjacent levels may introduce excessive scale mismatch and mix weak target responses with semantically inconsistent background features. Frequency modulation is performed before pyramid reconstruction so that target-related responses are refined and clutter-dominated components are suppressed before cross-scale propagation; otherwise, weak cues may already be diluted during repeated fusion and upsampling.

3.5. Spatial–Frequency Coordinated Feature Pyramid (SFCFP)

Following the feature purification stage, the Spatial–Frequency Coordinated Feature Pyramid (SFCFP) is constructed to perform the final multi-scale reconstruction. As shown in Figure 5, SFCFP takes S 2 , S 3 , S 4 , and S 5 as inputs, where S 2 denotes the high-resolution shallow feature, and S 3 , S 4 , and S 5 denote the purified intermediate features generated by FPL. Unlike conventional sequential feature pyramids, which often suffer from signal dilution during layer-by-layer propagation, SFCFP establishes a parallel and coordinated reconstruction paradigm. Specifically, it introduces three coordinated pathways: S2 spatial distribution, S5 spatial–frequency prior broadcasting, and purified intermediate skip injection. These pathways jointly preserve fragile thermal signatures and improve localization reliability.
Let f up ( · ) and f down ( · ) denote spatial upsampling and downsampling operations, respectively. To establish a robust semantic baseline, the deepest purified feature S 5 is first enhanced by a Transformer encoder, denoted as f trans ( · ) . In infrared imagery, where local contrast is weak, capturing long-range contextual dependencies is important for distinguishing real targets from complex thermal backgrounds. The enhanced deep features are then propagated through a top-down pathway:
T 5 = f trans ( S 5 ) , T l = Φ l f up ( T l + 1 )     S l , l { 3 , 4 } ,
where Φ l ( · ) denotes the top-down fusion block. This pathway provides foundational semantic guidance for the intermediate scales.
To preserve geometric localization cues for extremely small objects, SFCFP constructs a parallel S2 spatial distribution path. In conventional architectures, fine-grained target boundaries can be weakened after repeated multi-scale convolutions. To alleviate this issue, the shallowest feature S 2 , which contains rich spatial gradients, is fused with the top-down feature T 3 to form a high-resolution spatial hub H 2 . This hub is then redistributed to deeper levels via direct downsampling:
H 2 = f proj s f up ( T 3 )     S 2 , H l = f down ( l 2 ) ( H 2 ) , l { 3 , 4 } .
where f proj s denotes a scale-specific 1 × 1 projection for the P2 spatial hub, and f down ( l 2 ) ( · ) redistributes H 2 to level l.
This shortcut design injects high-resolution spatial anchors into deeper pyramid levels, effectively alleviating the localization degradation caused by sequential downsampling.
In parallel with spatial distribution, SFCFP introduces an S5 deep spatial–frequency prior broadcasting path. The deepest semantic feature T 5 is selected because it has the smallest spatial scale after repeated downsampling and convolutional filtering, providing the largest receptive field, richest semantic abstraction, and less local noise than shallower features. Because small thermal targets often lack distinct morphological features and are easily confused with background clutter, global scene statistics are valuable for suppressing false alarms. A spatial–frequency prior is extracted from the deepest semantic feature T 5 through global average pooling and channel projection:
q 5 = f proj g P gap ( T 5 ) , G l = f exp ( l ) ( q 5 ) , l { 3 , 4 , 5 } ,
where f proj g denotes the global-context channel projection, and f exp ( l ) ( · ) expands the global prior vector q 5 to match the spatial resolution of level l. This broadcasting mechanism enables all pyramid levels to share spatial–frequency prior, reducing over-response to local background noise. Finally, the purified skip features, spatial anchors, top-down semantics, and spatial–frequency priors are integrated during the bottom-up reconstruction phase. The final reconstructed pyramid features are denoted as F 3 , F 4 , and F 5 :
F 3 = Ψ 3 H 3     T 3     S 3     G 3 ,
F 4 = Ψ 4 f down ( F 3 )     T 4     S 4     H 4     G 4 ,
F 5 = Ψ 5 f down ( F 4 )     T 5     G 5 ,
where Ψ l ( · ) denotes the final aggregation block at level l. In this formulation, Ψ l functions as a coordinated fusion center. For instance, at level 3, it jointly integrates the spatial anchors from H 3 , local semantics from T 3 , frequency-refined intermediate features from S 3 , and spatial–frequency prior guidance from G 3 . Through the cooperation of these decoupled pathways, SFCFP reconstructs a robust multi-scale representation with precise localization cues and strong semantic discrimination for UAV infrared small-object detection.

4. Experiments and Results

4.1. Experimental Dataset Description

(1) HIT-UAV:HIT-UAV [40] provides thermal imagery collected from high-altitude UAV viewpoints for aerial object detection. Its aerial scenes contain several categories and exhibit substantial variations in target scale and thermal appearance. To alleviate class imbalance, we discard the “Dontcare” annotations and consolidate “Car” and “Other Vehicle” into a single “Vehicle” category. The processed samples are partitioned into training, validation, and test subsets using a 7:1:2 ratio.
(2) IRSTD-1K: IRSTD-1K [41] is an infrared small-target benchmark with diverse target appearances and complex background interference. It serves as a representative testbed for small-target detection under weak responses, low signal-to-clutter ratios, and cluttered thermal scenes. In this study, IRSTD-1K further assesses the proposed method under extremely small target scales, limited structural information, low local contrast, and challenging infrared scenes.
(3) RGBTDronePerson: RGBTDronePerson [42] provides spatially aligned RGB and thermal observations of densely distributed pedestrians viewed from different UAV altitudes and perspectives. In our experiments, only the thermal stream is utilized, omitting any cross-modal fusion with the visible spectrum. Following [42], samples labeled as “Uncertained” are excluded to avoid ambiguity during evaluation.
(4) USOD: USOD [43] is a visible-light remote sensing small-object detection dataset built from UNICORN2008. It contains 3000 images and 43,378 annotated vehicle instances. The dataset is dominated by extremely small objects, with 96.3% of targets smaller than 16 × 16 pixels and 99.9% smaller than 32 × 32 pixels. Many vehicle instances appear under low illumination or shadow occlusion, resulting in weak and spatially localized responses. USOD therefore provides a complementary evaluation of the frequency mechanism beyond thermal imagery, while UAV infrared detection remains the primary scope of this study.
As shown in Figure 6, the target width–height distributions of HIT-UAV, IRSTD-1K, RGBTDronePerson, and USOD are mainly concentrated in the small-object region marked by the 32-pixel boundary, indicating that these datasets are dominated by small targets. In particular, IRSTD-1K, RGBTDronePerson, and USOD are highly concentrated at very small scales, while HIT-UAV shows wider scale variation but still maintains its main density in the small-target range. These observations indicate that weak responses, limited spatial extent, scale sensitivity, and insufficient visual detail are common challenges across the four benchmarks.

4.2. Training and Experimental Comparison Platform

Table 1 summarizes the implementation settings used in all experiments. The proposed method is implemented in PyTorch 2.3.0 with Python 3.10 and trained on an NVIDIA A100 GPU with an AMD EPYC 7742 64-Core Processor. All input images are resized to 640 × 640 . The batch size is set to 8, and AdamW is used with an initial learning rate of 4 × 10 4 and a weight decay of 1 × 10 4 .

4.3. Evaluation Metrics

We evaluate detection performance using precision, recall, AP, mAP50, and mAP50:95. In this paper, mAP refers to mAP50:95 unless otherwise specified. Precision (P) and recall (R) are defined as
Precision = T P T P + F P ,
Recall = T P T P + F N ,
where T P , F P , and F N represent correctly detected objects, false alarms, and missed objects, respectively.
For category i at IoU threshold τ , AP is computed from the precision–recall curve:
AP i τ = 0 1 P i τ ( R ) d R ,
where P i τ ( R ) denotes the precision–recall curve of category i.
The two mAP metrics are calculated as
mAP 50 = 1 C i = 1 C AP i 0.50 ,
mAP = 1 10 τ { 0.50 , 0.55 , , 0.95 } 1 C i = 1 C AP i τ
where C is the number of object categories, and τ ranges from 0.50 to 0.95 in increments of 0.05.
For multi-class datasets, mAP50 and mAP are averaged over all categories. For single-class datasets, they are equivalent to the AP of the target category. Precision and recall are also reported to provide a more complete evaluation of detection quality in complex scenes.

4.4. Comparison with Advanced Detectors

To comprehensively evaluate the proposed SFCD-Det, we compare it with representative one-stage, Transformer-based detectors across four benchmarks. The evaluation covers UAV infrared object detection, infrared small-object detection, UAV thermal tiny-person detection, and visible-light remote sensing small-object detection.
As shown in Table 2 and Figure 7, the proposed method reaches 62.6% mAP and 95.1% mAP50 on the HIT-UAV dataset. Compared with the DEIM-N baseline, our method improves mAP from 59.0% to 62.6% and mAP50 from 93.4% to 95.1%, with gains of 3.6% and 1.7%, respectively. This improvement indicates that the proposed spatial–frequency collaborative design effectively enhances the representation of small infrared targets in UAV scenes. In addition, our method surpasses the larger DEIM-S model, which attains 62.2% mAP and 94.4% mAP50. Compared with DEIM-N, the improvement is obtained with a small parameter change, from 3.72 M to 3.81 M, and a FLOP increase from 7.1 G to 9.9 G. The trade-off visualization in Figure 7 further supports this observation, where our method occupies a favorable region with high detection accuracy and relatively low parameter and FLOP costs. These results indicate that the proposed detector improves small-target discrimination over DEIM-N while remaining competitive among the compared compact models.
Among the compared methods on HIT-UAV, YOLO-ViT [44] achieves 98.1% vehicle AP and 91.3% recall, but it requires 17.30M parameters and 33.1G FLOPs. Compact detectors such as FBRT-YOLO [45] and BDK-YOLO [16] reach 61.7% and 61.6% mAP, respectively, showing competitive accuracy with relatively small model sizes. In comparison, SFCD-Det records 62.6% mAP, 95.1% mAP50, 94.7% person AP, and 92.7% bicycle AP with only 3.81 M parameters. Relative to DEIM-N, the improvement is reflected not only in overall mAP but also in the Person and Bicycle categories, which are more sensitive to scale variation, partial occlusion, and weak thermal contrast. These results indicate that SFCD-Det offers a favorable trade-off between accuracy, parameter count, and FLOPs.
To further evaluate the ability to detect extremely small infrared targets, we conduct experiments on the IRSTD-1K dataset. As shown in Table 3, the proposed method achieves 41.4% mAP and 86.4% mAP50. It outperforms DEIM-N by 2.4% points in mAP and 2.3 points in recall, showing stronger recovery of weak targets in cluttered infrared scenes. Compared with DEIM-S, the proposed method also yields better accuracy while using far fewer parameters and FLOPs. Against IRMSD-YOLO [46], it attains slightly higher mAP, mAP50, and recall, while requiring lower computation. In addition, compared with RT-DETR-R18, the proposed method obtains higher accuracy with a much lighter model size and computation budget, which further confirms its efficiency on extremely small infrared targets.
To further validate the efficacy of SFCD-Det in UAV thermal pedestrian detection, we conduct evaluations on the RGBTDronePerson benchmark. As shown in Table 4, only the thermal modality is used in this experiment. Compared with the DEIM-N baseline, our method improves mAP from 15.8% to 16.8%, mAP50 from 44.3% to 46.8%, precision from 50.8% to 53.2%, and recall from 49.5% to 53.6%. These consistent improvements indicate that the proposed spatial–frequency modeling strategy remains effective when targets appear as tiny thermal responses with severe scale variation. Compared with D-FINE-S, our method also yields 0.3% higher mAP while utilizing 6.37M fewer parameters. Furthermore, compared with the recent YOLOv12-M, our method attains 1.2% higher mAP and 3.7% higher mAP50 while significantly reducing the parameter count by 16.29M and FLOPs by 57.2G. Thus, SFCD-Det still shows a clear performance advantage in UAV thermal imagery, where targets are very small, densely packed, and often occluded, indicating robustness under challenging infrared conditions.
Finally, USOD is used as a complementary visible-light benchmark to examine whether the proposed design remains effective beyond infrared imagery. As shown in Table 5, our method reaches 34.1% mAP and 88.0% mAP50. Compared with DEIM-N, it increases mAP from 32.7% to 34.1% and mAP50 from 85.1% to 88.0%, while the parameter count increases from 3.72 M to 3.81 M and FLOPs from 7.1 G to 9.9 G. Although YOLOv11-S obtains higher precision and recall of 89.4% and 82.5%, respectively, it reports 9.41 M parameters and 21.3 G FLOPs, compared with 3.81 M parameters and 9.9 G FLOPs for our method. These results suggest that the observed improvement is associated with weak and spatially localized target cues rather than thermal-specific degradation alone. Therefore, the frequency mechanism may also benefit visible-light small-object detection when target evidence is weakened by low illumination or shadow occlusion. Overall, the quantitative comparisons across four datasets support the effectiveness and cross-modal robustness of the proposed method, especially under small-scale, low-contrast, and degraded imaging scenarios.

4.5. Ablation Study

4.5.1. Overall Ablation Study

Table 6 isolates the effect of WTStem, FPL, and SFCFP. With WTStem, the mAP of DEIM-N increases from 59.0% to 59.8%, indicating that preserving early spatial–frequency cues improves the subsequent encoding process. Introducing FPL further raises mAP to 60.1%, which shows the benefit of removing clutter-dominated adjacent-scale responses before pyramid construction. Among the single-module variants, SFCFP contributes the most obvious improvement and reaches 61.2% mAP, highlighting the role of coordinated multi-scale reconstruction. The combined variants further show that these modules are complementary rather than independent additions. Pairing WTStem with SFCFP increases mAP to 61.8%, whereas the FPL+SFCFP configuration reaches 62.0%. This comparison indicates that purified adjacent-scale features provide more reliable inputs for the pyramid. The full configuration with WTStem, FPL, and SFCFP obtains the best performance, reaching 62.6% mAP, 95.1% mAP50, 91.2% precision, and 90.9% recall. Relative to the baseline, the complete model improves mAP by 3.6% and recall by 2.8%. Beyond the numerical improvements, the ablation results reveal a progressive working pattern: WTStem strengthens the initial representation, FPL refines neighboring-scale responses before aggregation, and SFCFP reorganizes the final multi-scale features. This progression shows that the three components form a connected optimization path for weak object detection.

4.5.2. Effectiveness of Different Stem Designs

Table 7 compares various stem designs built upon the DEIM-N baseline. RepStem [47] obtains 58.5% mAP and 88.6% recall, which are lower than those of the other stem variants. LOGStem [48] reaches 59.4% mAP but requires 15.4G FLOPs. SRFD [49] achieves the highest precision of 90.3%, whereas its mAP, mAP50, and recall remain below those of WTStem. Overall, WTStem achieves the highest mAP, mAP50, and recall, reaching 59.8%, 93.9%, and 89.6%, respectively, while maintaining the second-highest precision of 90.1%.
Feature maps produced by the baseline stem and WTStem are visualized to examine their ability to retain target cues during initial encoding. As shown in Figure 8, the baseline feature maps exhibit blurred object contours, indicating that fragile thermal structures are partially degraded during early encoding. In contrast, WTStem preserves more continuous structural morphology of tiny targets through spatial–frequency decoupling. The difference maps show that the improvements are mainly concentrated on high-frequency details and edge textures. This visual evidence indicates that combining spatial-to-depth rearrangement with high- and low-frequency decoupling at the input stage mitigates early information decay and retains sharper edge representations for subsequent feature extraction.

4.5.3. Feature Pyramid Network Comparative Experiment

As shown in Table 8, the proposed SFCFP achieves the best overall detection performance among the compared feature fusion modules. Compared with the DEIM-N baseline, SFCFP improves mAP from 59.0% to 61.2%, corresponding to a gain of 2.2% points, while mAP50 increases from 93.4% to 93.8%. These gains demonstrate that SFCFP improves detection accuracy across different IoU thresholds. Among the compared feature pyramid variants, SFCFP records the highest mAP. Although GoldYOLO reaches the same mAP50 and recall, its mAP is 1.4% points lower than that of SFCFP. HS-FPN and HyperACE also remain below SFCFP in mAP. Overall, these results demonstrate that spatial–frequency coordination strengthens multi-scale feature representation and improves detection accuracy.
To more directly clarify the contribution of the S2 spatial distribution path, we further conduct an internal ablation study of SFCFP, as shown in Table 9. Introducing the S2 path alone improves mAP from 59.0% to 60.1%, indicating that redistributing high-resolution spatial cues is beneficial for small-target localization. When the S5 spatial–frequency prior is further incorporated, mAP increases to 60.8%, suggesting that spatial–frequency prior guidance complements local spatial anchors by reducing background ambiguity. After adding the skip injection branch, the full SFCFP achieves the best performance, with 61.2% mAP and 89.1% recall. These results show that the S2 path contributes directly to localization-sensitive representation, while the S5 prior and skip branch provide complementary semantic guidance and intermediate feature reinforcement.

4.5.4. Visual Analysis of Module Interactions

Figure 9 visualizes the feature responses before and after SFCFP under different module combinations. Compared with the baseline, SFCFP alone increases responses around small targets, but some activations are still scattered over background structures. When WTStem is combined with SFCFP, more target-related responses are retained at the SFCFP input, indicating that early spatial–frequency encoding provides richer weak-object cues for subsequent pyramid reconstruction. In contrast, FPL+SFCFP produces cleaner responses with reduced background activation, showing that adjacent-scale purification suppresses clutter before feature aggregation. The full model further combines these advantages: target regions become more continuous and concentrated after SFCFP, while irrelevant background responses are weakened. These visual comparisons support the progressive preservation–purification–coordination mechanism of SFCD-Det and explain why the complete model achieves the best performance in the ablation study.

4.6. Error Analysis

As illustrated in Figure 10, the proposed method consistently improves the correct classification ratios across target categories compared with the DEIM-N baseline. For challenging small targets, the ratio increases from 0.93 to 0.95 for the Person category and from 0.92 to 0.94 for the Bicycle category. The model also reduces missed detections, which correspond to true target classes predicted as the Background category in the rightmost column. Specifically, the false negative ratio of the Person category decreases from 0.07 to 0.04, while that of the Bicycle category decreases from 0.06 to 0.04. This reduction indicates that the spatial–frequency collaborative mechanism better preserves weak infrared structural features and alleviates missed detections in cluttered aerial thermal scenes.
Figure 11 presents the TIDE error analysis, where a lower potential AP gain indicates fewer remaining errors of the corresponding type. For the DEIM-N baseline, localization and background errors constitute the primary performance bottlenecks. Localization and background errors decrease from 2.46 to 1.71 and from 1.69 to 1.35, respectively, after incorporating the proposed modules. The overall error summary further reveals that the false negative rate drops from 2.03 to 1.18. These reductions indicate that the proposed architecture improves bounding box localization and helps distinguish fragile infrared targets from complex background clutter.

4.7. Statistical Consistency Analysis

To examine the consistency of the experimental results, each model was independently trained and evaluated five times with different random seeds under identical settings. Table 10 presents the mean and standard deviation of mAP, mAP50, precision, and recall. SFCD-Det achieves 62.60 ± 0.16 % mAP on HIT-UAV and 16.76 ± 0.09 % on RGBTDronePerson, exceeding DEIM-S and D-FINE-S, respectively. Its higher mean values across all four metrics on both datasets demonstrate robust detection performance in UAV infrared scenes, including the challenging high-density RGBTDronePerson benchmark.

4.8. Visual Analysis

To intuitively examine detection behavior under challenging scenes, we present qualitative results on four benchmarks. These visual comparisons offer a direct view of the detection differences among methods under representative challenging cases. Figure 12 compares detection performance on the HIT-UAV dataset across six representative challenging scenarios. As highlighted by red dashed circles, baseline models like YOLOv8-N, FBRT-YOLO, and DEIM-S struggle with severe occlusions and extremely small scales, leading to frequent missed detections in dense crowds and distant views. Furthermore, DEIM-N and D-FINE-N occasionally generate false positives by misclassifying background artifacts, denoted by yellow dashed circles. In contrast, our proposed method reduces missed detections in heavily clustered areas and suppresses false alarms, showing robust localization across diverse aerial scenes. These visual results are consistent with the quantitative improvements in recall and category-level AP, especially for small person and bicycle targets.
Figure 13 evaluates the detection performance on the IRSTD-1K dataset, using red and yellow dashed circles to indicate missed targets and false positives, respectively. Baseline models like FBRT-YOLO and DEIM-N exhibit noticeable missed detections when targets are submerged in complex backgrounds with low thermal contrast. Conversely, models such as D-FINE-N and DEIM-S are prone to generating false positives by misclassifying local clutter. By integrating early signal preservation, intermediate feature purification, and coordinated multi-scale reconstruction, our proposed SFCD-Det effectively reduces both errors, yielding more reliable localization. This observation indicates that the three spatial–frequency modules jointly help separate weak infrared targets from severe background interference.
Figure 14 assesses the RGBTDronePerson dataset, characterized by extremely dense clustering and very tiny pedestrians. Using true positive and false positive metrics for scene-level comparison, we observe that YOLOv8-S and DEIM-N suffer from substantial missed detections in heavily populated scenarios where ground truth instances approach a hundred. Conversely, our method separates closely packed instances more effectively, increasing true positives and outperforming the baselines in highly crowded scenes. Furthermore, in sparse but challenging environments, our architecture consistently recalls genuine targets while maintaining near-zero false positives, confirming its capability to handle severe instance clutter. The visual comparisons indicate that the proposed method improves detection not only by reducing missed targets and false alarms, but also by maintaining clearer target structures across dense, tiny, and low-contrast scenes.
Figure 15 provides complementary evidence on the visible-light USOD dataset. Although USOD is not an infrared benchmark, many targets are extremely small and appear under low illumination or shadow occlusion, resulting in weak and spatially localized responses similar to those in degraded thermal scenes. As highlighted by the red dashed circles, both DEIM-N and SFCD-Det still miss some vehicles near dark backgrounds, but SFCD-Det recalls more weak targets and produces more robust detection results. This observation suggests that the proposed frequency mechanism is not only related to the lack of texture and color in infrared imagery, but may also help preserve weak localized cues when visible-light target evidence is degraded. Nevertheless, this work centers on UAV infrared detection, with USOD included only to examine cross-modal behavior.

5. Conclusions

This paper presents SFCD-Det, a spatial–frequency collaborative architecture for UAV infrared small-object detection. The proposed framework integrates WTStem for early spatial–frequency preservation, FPL for adjacent-scale feature purification, and SFCFP for coordinated multi-scale reconstruction. Experiments on HIT-UAV, IRSTD-1K, and RGBTDronePerson show that SFCD-Det improves weak-target representation in UAV-view infrared scenes, extremely small infrared target detection, and dense thermal pedestrian detection. The evaluation on USOD further suggests that the proposed frequency mechanism is not restricted to thermal degradation, but may also benefit weak and localized visible-light responses under low illumination or shadow. Overall, these results indicate that spatial–frequency collaboration is effective for small targets with weak contrast, cluttered backgrounds, and limited spatial evidence, while UAV infrared detection remains the primary focus of this study.
Despite these promising results, several limitations remain. Since SFCD-Det addresses fragile cue attenuation through a progressive three-stage pipeline rather than an end-to-end single module, its structural complexity is slightly increased. WTStem aims to reduce cue loss at the source by preserving spatial–frequency details before backbone encoding. FPL then suppresses clutter-dominated adjacent-scale responses before pyramid reconstruction, reducing the risk that background interference is propagated during aggregation. SFCFP further compensates for the remaining attenuation by reorganizing shallow spatial anchors, purified intermediate responses, and spatial–frequency priors during multi-scale reconstruction. Therefore, the method may still struggle when the original target response is extremely weak or severely submerged in clutter. In addition, the robustness analysis is currently based on selected benchmarks and representative comparison models, and broader validation across more datasets, detector scales, and deployment settings remains necessary. The computational analysis is also mainly based on parameter counts and FLOPs, which do not fully reflect hardware-dependent inference efficiency. Future work will include broader robustness evaluations, report practical inference latency, and extend the framework to oriented object detection.

Author Contributions

Conceptualization, Y.L.; Methodology, Y.L.; Software, Y.L.; Writing—original draft, Y.L.; Visualization, Y.L.; Supervision, Y.H.; Project administration, Y.H.; Funding acquisition, Y.H.; Validation, L.J.; Investigation, L.J.; Data curation, Q.R.; Formal analysis, Q.R. and D.L.; Resources, D.L.; Writing—review and editing, D.L.; All authors have read and agreed to the published version of the manuscript.

Funding

This work is funded by the Science and Technology Support Plan Project of Guizhou (QKHZC [2022] 267).

Institutional Review Board Statement

Not applicable.

Informed Consent Statement

Not applicable.

Data Availability Statement

The datasets analyzed in this study are publicly available. The HIT-UAV dataset can be accessed at https://github.com/suojiashun/HIT-UAV-Infrared-Thermal-Dataset (accessed on 21 August 2025). The RGBTDronePerson dataset is available at https://github.com/NNNNerd/mmdet-rgbtdroneperson (accessed on 22 April 2026). The IRSTD-1K dataset can be obtained via https://github.com/RuiZhang97/ISNet (accessed on 14 January 2026). The USOD dataset is provided at https://github.com/yemu1138178251/FFCA-YOLO (accessed on 3 May 2026). All datasets were utilized in strict accordance with the terms and licenses stipulated by their respective original providers.

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. Borja-Jaimes, V.; Valdez-Martínez, J.S.; Beltrán-Escobar, M.; Ramírez-Zúñiga, G.; Reyes-Mayer, A.; Calixto-Rodríguez, M. Robust Backstepping-Sliding Control of a Quadrotor UAV with Disturbance Compensation. Computation 2026, 14, 51. [Google Scholar] [CrossRef] [Scilit]
  2. 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), Virtual, 3–7 May 2021. [Google Scholar]
  3. 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] [Scilit] [PubMed]
  4. Cai, Z.; Vasconcelos, N. Cascade R-CNN: Delving Into High Quality Object Detection. In Proceedings of the 2018 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Salt Lake City, UT, USA, 18–22 June 2018; pp. 6154–6162. [Google Scholar] [CrossRef] [Scilit]
  5. Jocher, G.; Chaurasia, A.; Qiu, J. Ultralytics YOLO. 2023. Available online: https://github.com/ultralytics/ultralytics (accessed on 28 August 2025).
  6. Tian, Y.; Ye, Q.; Doermann, D. YOLOv12: Attention-Centric Real-Time Object Detectors. arXiv 2025, arXiv:cs.CV/2502.12524. [Google Scholar]
  7. Wang, C.Y.; Yeh, I.H.; Mark Liao, H.Y. YOLOv9: Learning What You Want to Learn Using Programmable Gradient Information. In Proceedings of the European Conference on Computer Vision (ECCV 2024); Springer Nature: Cham, Switzerland, 2025; pp. 1–21. [Google Scholar]
  8. Wang, A.; Chen, H.; Liu, L.; Chen, K.; Lin, Z.; Han, J.; Ding, G. YOLOv10: Real-Time End-to-End Object Detection. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS); Curran Associates, Inc.: Red Hook, NY, USA, 2024; Volume 37, pp. 107984–108011. [Google Scholar] [CrossRef] [Scilit]
  9. Zhao, Y.; Lv, W.; Xu, S.; Wei, J.; Wang, G.; Dang, Q.; Liu, Y.; Chen, J. DETRs Beat YOLOs on Real-time Object Detection. In Proceedings of the 2024 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Seattle, WA, USA, 16–22 June 2024; pp. 16965–16974. [Google Scholar] [CrossRef] [Scilit]
  10. Lv, W.; Zhao, Y.; Chang, Q.; Huang, K.; Wang, G.; Liu, Y. RT-DETRv2: Improved Baseline with Bag-of-Freebies for Real-Time Detection Transformer. arXiv 2024, arXiv:cs.CV/2407.17140. [Google Scholar]
  11. Zhang, H.; Li, F.; Liu, S.; Zhang, L.; Su, H.; Zhu, J.; Ni, L.; Shum, H.Y. DINO: DETR with Improved DeNoising Anchor Boxes for End-to-End Object Detection. In Proceedings of the Eleventh International Conference on Learning Representations (ICLR), Kigali, Rwanda, 1–5 May 2023. [Google Scholar]
  12. Peng, Y.; Li, H.; Wu, P.; Zhang, Y.; Sun, X.; Wu, F. D-FINE: Redefine Regression Task of DETRs as Fine-grained Distribution Refinement. In Proceedings of the Thirteenth International Conference on Learning Representations (ICLR), Singapore, 24–28 April 2025. [Google Scholar]
  13. Huang, S.; Lu, Z.; Cun, X.; Yu, Y.; Zhou, X.; Shen, X. DEIM: DETR with Improved Matching for Fast Convergence. In Proceedings of the Conference on Computer Vision and Pattern Recognition (CVPR), Nashville, TN, USA, 11–15 June 2025; pp. 15162–15171. [Google Scholar]
  14. Zhao, X.; Zhang, W.; Zhang, H.; Zheng, C.; Ma, J.; Zhang, Z. ITD-YOLOv8: An Infrared Target Detection Model Based on YOLOv8 for Unmanned Aerial Vehicles. Drones 2024, 8, 161. [Google Scholar] [CrossRef] [Scilit]
  15. Han, Y.; Wang, C.; Luo, H.; Wang, H.; Chen, Z.; Xia, Y.; Yun, L. LRDS-YOLO enhances small object detection in UAV aerial images with a lightweight and efficient design. Sci. Rep. 2025, 15, 22627. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  16. Xiao, N.; Hong, X.; Zheng, Z. BDK-YOLOv8: An Enhanced Algorithm for UAV Infrared Image Object Detection. IEEE Access 2024, 12, 191129–191139. [Google Scholar] [CrossRef] [Scilit]
  17. Wang, C.; Wang, R.; Wu, Z.; Bian, Z.; Huang, T. YOLO-UIR: A Lightweight and Accurate Infrared Object Detection Network Using UAV Platforms. Drones 2025, 9, 479. [Google Scholar] [CrossRef] [Scilit]
  18. Wang, S.; Jiang, H.; Li, Z.; Yang, J.; Ma, X.; Chen, J.; Tang, X. PHSI-RTDETR: A Lightweight Infrared Small Target Detection Algorithm Based on UAV Aerial Photography. Drones 2024, 8, 240. [Google Scholar] [CrossRef] [Scilit]
  19. Liu, Y.; Jin, T.; Hui, B. DISO-DETR: A Detail-Enhanced Infrared Small Object Detection Transformer Based on UAV Imagery. In Proceedings of the 2025 7th International Conference on Software Engineering and Computer Science (CSECS), Taicang, China, 21–23 March 2025; pp. 1–6. [Google Scholar] [CrossRef] [Scilit]
  20. Xu, K.; Song, C.; Xie, Y.; Pan, L.; Gan, X.; Huang, G. RMT-YOLOv9s: An Infrared Small Target Detection Method Based on UAV Remote Sensing Images. IEEE Geosci. Remote Sens. Lett. 2024, 21, 1–5. [Google Scholar] [CrossRef] [Scilit]
  21. Yao, T.; Pan, Y.; Li, Y.; Ngo, C.W.; Mei, T. Wave-ViT: Unifying Wavelet and Transformers for Visual Representation Learning. In Proceedings of the European Conference on Computer Vision (ECCV 2022); Springer Nature Switzerland: Cham, Switzerland, 2022; pp. 328–345. [Google Scholar] [CrossRef] [Scilit]
  22. Li, Q.; Yang, Z.; Cheng, J.; Wang, Q. Spatial–Frequency Feature Learning for Infrared Small Target Detection. IEEE Trans. Aerosp. Electron. Syst. 2026, 62, 4883–4894. [Google Scholar] [CrossRef] [Scilit]
  23. Lin, Z.; Huang, G.; Li, M.; Yuan, X.; Yue, G.; Pun, C.M.; Cheng, L. SFCANet: Channel Attention in Spatial-Frequency Domain for Infrared Small Target Detection. IEEE Trans. Aerosp. Electron. Syst. 2025, 61, 13363–13379. [Google Scholar] [CrossRef] [Scilit]
  24. Deng, C.; Zhao, Z.; Xu, X.; Xia, Y.; Li, J.; Plaza, A. GSFANet: Global Spatial–Frequency Attention Network for Infrared Small Target Detection. IEEE Trans. Geosci. Remote Sens. 2025, 63, 1–17. [Google Scholar] [CrossRef] [Scilit]
  25. Liu, Y.; Lin, Z.; Li, B.; Liu, T.; An, W. FM-Net: Frequency-Aware Masked-Attention Network for Infrared Small Target Detection. Remote Sens. 2025, 17, 2264. [Google Scholar] [CrossRef] [Scilit]
  26. Pan, J.; Chen, X.; Dong, Z.; Zhang, M.; Guo, H. Edge-Prior Guided Dual-Branch Enhancement Network for Infrared Small Target Detection. Appl. Sci. 2026, 16, 2929. [Google Scholar] [CrossRef] [Scilit]
  27. Li, R.; Xiao, C.; Yin, Q.; An, W.; Chen, N.; Ying, X.; Li, M.; Wang, Y. Dynamic High-Frequency Convolution for Infrared Small Target Detection. IEEE Trans. Circuits Syst. Video Technol. 2026, 36, 7676–7680. [Google Scholar] [CrossRef] [Scilit]
  28. Zhu, Y.; Ma, Y.; Fan, F.; Huang, J.; Yao, Y.; Zhou, X.; Huang, R. Toward Robust Infrared Small Target Detection via Frequency and Spatial Feature Fusion. IEEE Trans. Geosci. Remote Sens. 2025, 63, 1–15. [Google Scholar] [CrossRef] [Scilit]
  29. Lin, T.Y.; Dollár, P.; Girshick, R.; He, K.; Hariharan, B.; Belongie, S. Feature Pyramid Networks for Object Detection. In Proceedings of the 2017 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Honolulu, HI, USA, 21–26 July 2017. [Google Scholar] [CrossRef] [Scilit]
  30. Tan, M.; Pang, R.; Le, Q.V. EfficientDet: Scalable and Efficient Object Detection. In Proceedings of the 2020 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Seattle, WA, USA, 13–19 June 2020; pp. 10778–10787. [Google Scholar] [CrossRef] [Scilit]
  31. Yang, G.; Lei, J.; Tian, H.; Feng, Z.; Liang, R. Asymptotic Feature Pyramid Network for Labeling Pixels and Regions. IEEE Trans. Circuits Syst. Video Technol. 2024, 34, 7820–7829. [Google Scholar] [CrossRef] [Scilit]
  32. Wang, C.; He, W.; Nie, Y.; Guo, J.; Liu, C.; Wang, Y.; Han, K. Gold-YOLO: Efficient Object Detector via Gather-and-Distribute Mechanism. In Proceedings of the Advances in Neural Information Processing Systems (NeurIPS); Curran Associates, Inc.: Red Hook, NY, USA, 2023; Volume 36, pp. 51094–51112. [Google Scholar]
  33. Shi, Z.; Hu, J.; Ren, J.; Ye, H.; Yuan, X.; Ouyang, Y.; He, J.; Ji, B.; Guo, J. HS-FPN: High Frequency and Spatial Perception FPN for Tiny Object Detection. In Proceedings of the AAAI Conference on Artificial Intelligence, Philadelphia, PA, USA, 25 February–4 March 2025; Volume 39, pp. 6896–6904. [Google Scholar] [CrossRef] [Scilit]
  34. Lei, M.; Li, S.; Wu, Y.; Hu, H.; Zhou, Y.; Zheng, X.; Ding, G.; Du, S.; Wu, Z.; Gao, Y. YOLOv13: Real-Time Object Detection with Hypergraph-Enhanced Adaptive Visual Perception. arXiv 2025, arXiv:cs.CV/2506.17733. [Google Scholar]
  35. Qin, M.; Song, Y.; Zhao, Q.; Yang, X.; Che, Y.; Yang, X. A3-FPN: Asymptotic content-aware pyramid attention network for dense visual prediction. Pattern Recognit. 2026, 179, 113793. [Google Scholar] [CrossRef] [Scilit]
  36. Du, Z.; Hu, Z.; Zhao, G.; Jin, Y.; Ma, H. Cross-Layer Feature Pyramid Transformer for Small Object Detection in Aerial Images. IEEE Trans. Geosci. Remote Sens. 2025, 63, 1–14. [Google Scholar] [CrossRef] [Scilit]
  37. Zhou, S.; Pan, J.; Shi, J.; Chen, D.; Qu, L.; Yang, J. Seeing the Unseen: A Frequency Prompt Guided Transformer for Image Restoration. In Proceedings of the European Conference on Computer Vision (ECCV 2024); Springer Nature: Cham, Switzerland, 2025; pp. 246–264. [Google Scholar]
  38. Sun, H.; Wang, R.; Li, Y.; Yang, L.; Lin, S.; Cao, X.; Zhang, B. SET: Spectral Enhancement for Tiny Object Detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Nashville, TN, USA, 11–15 June 2025; pp. 4713–4723. [Google Scholar]
  39. Yuan, M.; Meng, D.; Xi, Z.; Zhao, T.; Zhao, S.; Dai, Y.; Wei, X. Seeing Through the Noise: Improving Infrared Small Target Detection and Segmentation from Noise Suppression Perspective. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), Denver, CO, USA, 3–7 June 2026; pp. 27783–27792. [Google Scholar]
  40. Suo, J.; Wang, T.; Zhang, X.; Chen, H.; Zhou, W.; Shi, W. HIT-UAV: A high-altitude infrared thermal dataset for Unmanned Aerial Vehicle-based object detection. Sci. Data 2023, 10, 227. [Google Scholar] [CrossRef] [Scilit] [PubMed]
  41. Zhang, M.; Zhang, R.; Yang, Y.; Bai, H.; Zhang, J.; Guo, J. ISNet: Shape Matters for Infrared Small Target Detection. In Proceedings of the 2022 IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR), New Orleans, LA, USA, 18–24 June 2022; pp. 867–876. [Google Scholar] [CrossRef] [Scilit]
  42. Zhang, Y.; Xu, C.; Yang, W.; He, G.; Yu, H.; Yu, L.; Xia, G.S. Drone-based RGBT tiny person detection. ISPRS J. Photogramm. Remote Sens. 2023, 204, 61–76. [Google Scholar] [CrossRef] [Scilit]
  43. Zhang, Y.; Ye, M.; Zhu, G.; Liu, Y.; Guo, P.; Yan, J. FFCA-YOLO for Small Object Detection in Remote Sensing Images. IEEE Trans. Geosci. Remote Sens. 2024, 62, 1–15. [Google Scholar] [CrossRef] [Scilit]
  44. Zhao, X.; Xia, Y.; Zhang, W.; Zheng, C.; Zhang, Z. YOLO-ViT-Based Method for Unmanned Aerial Vehicle Infrared Vehicle Target Detection. Remote Sens. 2023, 15, 3778. [Google Scholar] [CrossRef] [Scilit]
  45. Xiao, Y.; Xu, T.; Xin, Y.; Li, J. FBRT-YOLO: Faster and Better for Real-Time Aerial Image Detection. In Proceedings of the AAAI Conference on Artificial Intelligence, Philadelphia, PA, USA, 25 February–4 March 2025; Volume 39, pp. 8673–8681. [Google Scholar] [CrossRef] [Scilit]
  46. Liu, B.; Jiang, Q.; Wang, P.; Yao, S.; Zhou, W.; Jin, X. IRMSD-YOLO: Multiscale Dilated Network With Inverted Residuals for Infrared Small Target Detection. IEEE Sens. J. 2025, 25, 16006–16019. [Google Scholar] [CrossRef] [Scilit]
  47. Vasu, P.K.A.; Gabriel, J.; Zhu, J.; Tuzel, O.; Ranjan, A. FastViT: A Fast Hybrid Vision Transformer using Structural Reparameterization. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV), Paris, France, 2–6 October 2023; pp. 5762–5772. [Google Scholar] [CrossRef] [Scilit]
  48. Lu, W.; Chen, S.B.; Li, H.D.; Shu, Q.L.; Ding, C.H.Q.; Tang, J.; Luo, B. LEGNet: A Lightweight Edge-Gaussian Network for Low-Quality Remote Sensing Image Object Detection. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV) Workshops, Honolulu, HI, USA, 19–20 October 2025; pp. 2865–2874. [Google Scholar]
  49. Lu, W.; Chen, S.B.; Tang, J.; Ding, C.H.Q.; Luo, B. A Robust Feature Downsampling Module for Remote-Sensing Visual Tasks. IEEE Trans. Geosci. Remote Sens. 2023, 61, 1–12. [Google Scholar] [CrossRef] [Scilit]
Figure 1. Overall structure of SFCD-Det. The proposed detector introduces WTStem for early spatial–frequency feature preservation, FPL for adjacent-scale feature purification, and SFCFP for coordinated multi-scale reconstruction.
Figure 1. Overall structure of SFCD-Det. The proposed detector introduces WTStem for early spatial–frequency feature preservation, FPL for adjacent-scale feature purification, and SFCFP for coordinated multi-scale reconstruction.
Applsci 16 07594 g001
Figure 2. Structure of the proposed WTStem. The input image is decoupled into orthogonal frequency sub-bands, followed by a dual-branch adaptive enhancement strategy for initial signal preservation.
Figure 2. Structure of the proposed WTStem. The input image is decoupled into orthogonal frequency sub-bands, followed by a dual-branch adaptive enhancement strategy for initial signal preservation.
Applsci 16 07594 g002
Figure 3. Architecture of the FDAF module. FDAF models adjacent-scale feature interaction through spatial response encoding and spatial–frequency dynamic modulation.
Figure 3. Architecture of the FDAF module. FDAF models adjacent-scale feature interaction through spatial response encoding and spatial–frequency dynamic modulation.
Applsci 16 07594 g003
Figure 4. Structure of the Feature Purification Layer (FPL). The layer integrates FDAF units to perform adjacent-scale feature purification.
Figure 4. Structure of the Feature Purification Layer (FPL). The layer integrates FDAF units to perform adjacent-scale feature purification.
Applsci 16 07594 g004
Figure 5. Structure of the Spatial–Frequency Coordinated Feature Pyramid (SFCFP). SFCFP receives S 2 and the purified features S 3 , S 4 , and S 5 and reconstructs discriminative multi-scale features through S2 spatial distribution, S5 spatial–frequency prior broadcasting, and purified intermediate skip injection.
Figure 5. Structure of the Spatial–Frequency Coordinated Feature Pyramid (SFCFP). SFCFP receives S 2 and the purified features S 3 , S 4 , and S 5 and reconstructs discriminative multi-scale features through S2 spatial distribution, S5 spatial–frequency prior broadcasting, and purified intermediate skip injection.
Applsci 16 07594 g005
Figure 6. Target width–height distributions of HIT-UAV, IRSTD-1K, RGBTDronePerson, and USOD in logarithmic coordinate space.
Figure 6. Target width–height distributions of HIT-UAV, IRSTD-1K, RGBTDronePerson, and USOD in logarithmic coordinate space.
Applsci 16 07594 g006
Figure 7. Accuracy vs. computational cost on the HIT-UAV test set. The bubble area indicates the parameter count. The top-left region indicates models with higher detection accuracy and lower reported parameter and FLOP costs.
Figure 7. Accuracy vs. computational cost on the HIT-UAV test set. The bubble area indicates the parameter count. The top-left region indicates models with higher detection accuracy and lower reported parameter and FLOP costs.
Applsci 16 07594 g007
Figure 8. Visual comparison of initial signal preservation between the baseline stem and WTStem.
Figure 8. Visual comparison of initial signal preservation between the baseline stem and WTStem.
Applsci 16 07594 g008
Figure 9. Visual comparison of SFCFP input and output activations under different module combinations.
Figure 9. Visual comparison of SFCFP input and output activations under different module combinations.
Applsci 16 07594 g009
Figure 10. Confusion matrix comparison between the baseline DEIM-N and our proposed method.
Figure 10. Confusion matrix comparison between the baseline DEIM-N and our proposed method.
Applsci 16 07594 g010
Figure 11. TIDE error analysis comparison between the baseline DEIM-N and our proposed method.
Figure 11. TIDE error analysis comparison between the baseline DEIM-N and our proposed method.
Applsci 16 07594 g011
Figure 12. Visual detection examples on HIT-UAV under typical UAV infrared scenarios. Red circles indicate visually identifiable missed detections, while yellow circles denote false predictions.
Figure 12. Visual detection examples on HIT-UAV under typical UAV infrared scenarios. Red circles indicate visually identifiable missed detections, while yellow circles denote false predictions.
Applsci 16 07594 g012
Figure 13. Visual detection examples on IRSTD-1K under cluttered infrared backgrounds. Red circles indicate visually identifiable missed detections, yellow circles denote false predictions, and white circles indicate detected objects whose predicted bounding boxes do not fully cover the entire object.
Figure 13. Visual detection examples on IRSTD-1K under cluttered infrared backgrounds. Red circles indicate visually identifiable missed detections, yellow circles denote false predictions, and white circles indicate detected objects whose predicted bounding boxes do not fully cover the entire object.
Applsci 16 07594 g013
Figure 14. Visual detection examples on the RGBTDronePerson dataset are provided to intuitively analyze model predictions in terms of TP and FP detection cases.
Figure 14. Visual detection examples on the RGBTDronePerson dataset are provided to intuitively analyze model predictions in terms of TP and FP detection cases.
Applsci 16 07594 g014
Figure 15. Visual detection examples on USOD under low illumination and shadow occlusion. Red circles indicate visually identifiable missed detections, yellow circles denote false predictions, and white circles indicate detected objects whose predicted bounding boxes do not fully cover the entire object.
Figure 15. Visual detection examples on USOD under low illumination and shadow occlusion. Red circles indicate visually identifiable missed detections, yellow circles denote false predictions, and white circles indicate detected objects whose predicted bounding boxes do not fully cover the entire object.
Applsci 16 07594 g015
Table 1. Implementation settings used for model training and evaluation.
Table 1. Implementation settings used for model training and evaluation.
ItemSetting
GPUNVIDIA A100
CPUAMD EPYC 7742 64-Core Processor
FrameworkPyTorch 2.3.0
Python VersionPython 3.10
Batch Size8
OptimizerAdamW
Initial Learning Rate 4 × 10 4
Weight Decay 1 × 10 4
Resize 640 × 640
Table 2. Detection performance of advanced detectors on the HIT-UAV dataset. ‘Per.’, ‘Veh.’, and ‘Bic.’ denote the Person, Vehicle, and Bicycle categories. Bold and underline indicate the best and second-best results. The downward arrow indicates that lower values are better.
Table 2. Detection performance of advanced detectors on the HIT-UAV dataset. ‘Per.’, ‘Veh.’, and ‘Bic.’ denote the Person, Vehicle, and Bicycle categories. Bold and underline indicate the best and second-best results. The downward arrow indicates that lower values are better.
MethodPer. (%)Veh. (%)Bic. (%)mAP (%)mAP50 (%)P (%)R (%)Params (M) ↓FLOPs (G) ↓
YOLOv8-N91.097.588.658.092.490.487.13.018.1
YOLOv8-S92.297.191.561.393.691.889.211.1328.4
YOLOv9-T90.497.590.158.092.789.688.01.977.6
YOLOv10-N88.495.483.556.189.183.283.32.276.5
YOLOv11-N91.397.788.658.492.589.986.92.586.3
YOLOv12-N91.097.689.858.392.890.787.22.566.3
YOLOv12-S92.596.491.560.493.592.088.39.2321.2
RT-DETR-R1893.996.591.559.494.093.089.419.8756.9
RT-DETRv2-R1893.797.691.761.494.390.589.519.8859.9
D-FINE-N91.696.589.658.692.689.487.13.727.1
D-FINE-S93.197.089.361.793.190.387.110.1824.8
DEIM-N92.597.190.659.093.489.788.13.727.1
DEIM-S93.997.092.462.294.491.090.210.1824.8
FBRT-YOLO92.497.892.561.794.291.690.02.9023.1
YOLO-VIT93.398.192.0-94.590.091.317.3033.1
BDK-YOLO---61.694.390.590.31.358.0
Ours94.797.892.762.695.191.290.93.819.9
Table 3. Detection performance of advanced detectors on the IRSTD-1K dataset. Bold and underline indicate the best and second-best results. The downward arrow indicates that lower values are better.
Table 3. Detection performance of advanced detectors on the IRSTD-1K dataset. Bold and underline indicate the best and second-best results. The downward arrow indicates that lower values are better.
MethodmAP (%)mAP50 (%)P (%)R (%)Params (M) ↓FLOPs (G) ↓
YOLOv8-N38.083.486.778.13.018.1
YOLOv9-T35.280.585.077.91.977.6
YOLOv11-N37.881.887.876.42.586.3
YOLOv12-N37.282.384.780.82.566.3
RT-DETR-R1840.285.387.080.819.8756.9
D-FINE-N38.783.184.381.13.727.1
D-FINE-S39.483.983.182.910.1824.8
DEIM-N39.083.783.482.73.727.1
DEIM-S40.884.685.383.210.1824.8
FBRT-YOLO39.182.085.675.02.9023.1
IRMSD-YOLO41.286.289.183.18.3537.1
Ours41.486.483.585.03.819.9
Table 4. Detection performance of advanced detectors on the RGBTDronePerson dataset. Bold and underline indicate the best and second-best results. The downward arrow indicates that lower values are better.
Table 4. Detection performance of advanced detectors on the RGBTDronePerson dataset. Bold and underline indicate the best and second-best results. The downward arrow indicates that lower values are better.
MethodmAP (%)mAP50 (%)P (%)R (%)Params (M) ↓FLOPs (G) ↓
YOLOv8-S13.037.948.745.511.1328.4
YOLOv11-S14.340.852.344.99.4121.3
YOLOv12-M15.643.151.945.520.167.1
FBRT-YOLO13.035.544.740.62.9023.1
D-FINE-S16.545.850.752.910.1824.8
DEIM-N15.844.350.849.53.727.1
Ours16.846.853.253.63.819.9
Table 5. Detection performance of advanced detectors on the USOD dataset. Bold and underline indicate the best and second-best results. The downward arrow indicates that lower values are better.
Table 5. Detection performance of advanced detectors on the USOD dataset. Bold and underline indicate the best and second-best results. The downward arrow indicates that lower values are better.
MethodmAP (%)mAP50 (%)P (%)R (%)Params (M) ↓FLOPs (G) ↓
YOLOv8-S30.185.187.381.511.1328.4
YOLOv11-S32.387.589.482.59.4121.3
FBRT-YOLO28.383.185.580.42.9023.1
DEIM-N32.785.185.878.13.727.1
Ours34.188.087.881.73.819.9
Table 6. Ablation study of the proposed components on the HIT-UAV dataset.
Table 6. Ablation study of the proposed components on the HIT-UAV dataset.
VariantWTStemFPLSFCFPmAP (%)mAP50 (%)P (%)R (%)
Baseline---59.093.489.788.1
Exp. 1--59.893.990.189.6
Exp. 2--60.194.190.689.4
Exp. 3--61.293.890.089.1
Exp. 4-61.894.391.190.0
Exp. 5-62.094.690.390.4
Exp. 662.695.191.290.9
Table 7. Accuracy and computational cost of different stem designs. Bold and underline indicate the best and second-best results. The downward arrow indicates that lower values are better.
Table 7. Accuracy and computational cost of different stem designs. Bold and underline indicate the best and second-best results. The downward arrow indicates that lower values are better.
MethodmAP (%)mAP50 (%)P (%)R (%)Params (M) ↓FLOPs (G) ↓
DEIM-N59.093.489.788.13.727.1
SRFD59.493.890.389.23.727.3
LOGStem59.493.589.889.13.7615.4
RepStem58.593.289.788.63.726.7
WTStem59.893.990.189.63.747.5
Table 8. Accuracy and computational cost of different feature pyramid network designs. Bold and underline indicate the best and second-best results. The downward arrow indicates that lower values are better.
Table 8. Accuracy and computational cost of different feature pyramid network designs. Bold and underline indicate the best and second-best results. The downward arrow indicates that lower values are better.
MethodmAP (%)mAP50 (%)P (%)R (%)Params (M) ↓FLOPs (G) ↓
DEIM-N59.093.489.788.13.727.1
HS-FPN59.993.288.988.65.3610.7
GoldYOLO59.893.890.089.14.177.2
HyperACE59.393.489.988.54.088.1
A3FPN59.293.190.588.73.737.1
SFCFP61.293.890.089.13.609.3
Table 9. Internal ablation study of different pathways in SFCFP on the HIT-UAV dataset.
Table 9. Internal ablation study of different pathways in SFCFP on the HIT-UAV dataset.
MethodS2 PathS5 PriorSkip InjectionmAP (%)mA50 (%)P (%)R (%)
DEIM-N---59.093.489.788.1
SFCFP w/S2--60.193.689.588.6
SFCFP w/S2+S5-60.893.889.888.9
Full SFCFP61.293.890.089.1
Table 10. Five-seed stability analysis, reported as mean ± standard deviation.
Table 10. Five-seed stability analysis, reported as mean ± standard deviation.
DatasetMethodmAP (%)mAP50 (%)P (%)R (%)
HIT-UAVDEIM-S 62.22 ± 0.19 94.44 ± 0.17 90.96 ± 0.27 90.22 ± 0.20
HIT-UAVSFCD-Det 62.60 ± 0.16 95.06 ± 0.17 91.18 ± 0.31 90.94 ± 0.18
RGBTDronePersonD-FINE-S 16.52 ± 0.08 45.78 ± 0.19 50.70 ± 0.23 52.90 ± 0.14
RGBTDronePersonSFCD-Det 16.76 ± 0.09 46.76 ± 0.15 53.16 ± 0.24 53.62 ± 0.16
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

Li, Y.; He, Y.; Ji, L.; Ren, Q.; Lv, D. SFCD-Det: A Spatial–Frequency Collaborative Architecture for UAV Infrared Small-Object Detection. Appl. Sci. 2026, 16, 7594. https://doi.org/10.3390/app16157594

AMA Style

Li Y, He Y, Ji L, Ren Q, Lv D. SFCD-Det: A Spatial–Frequency Collaborative Architecture for UAV Infrared Small-Object Detection. Applied Sciences. 2026; 16(15):7594. https://doi.org/10.3390/app16157594

Chicago/Turabian Style

Li, Yufeng, Yong He, Lei Ji, Qianxu Ren, and Dong Lv. 2026. "SFCD-Det: A Spatial–Frequency Collaborative Architecture for UAV Infrared Small-Object Detection" Applied Sciences 16, no. 15: 7594. https://doi.org/10.3390/app16157594

APA Style

Li, Y., He, Y., Ji, L., Ren, Q., & Lv, D. (2026). SFCD-Det: A Spatial–Frequency Collaborative Architecture for UAV Infrared Small-Object Detection. Applied Sciences, 16(15), 7594. https://doi.org/10.3390/app16157594

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