Next Article in Journal
Spatial Heterogeneity and Responses of Wildfire Drivers Across Diverse Climatic Regions in China
Next Article in Special Issue
A Spatial-Temporal Attention-Based U-Net for Crop Mapping from Time-Series Sentinel-2 Imagery: A Case in Sanjiang Plain
Previous Article in Journal
Infrared Moving Maritime Vessel Segmentation Based on Multi-Scale Spatial–Temporal Transformer Network
Previous Article in Special Issue
Unraveling Patch Size Effects in Vision Transformers: Adversarial Robustness in Hyperspectral Image Classification
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

SG-YOLO: A Multispectral Small-Object Detector for UAV Imagery Based on YOLO

1
School of Optoelectronic Engineering, Xidian University, Xi’an 710071, China
2
Institute of Science, Technology and Education Development, Xi’an Jiaotong University, Xi’an 710071, China
3
Research and Development Center of Infrared Detection Technology, China Aerospace Science and Technology Group Co., Ltd., Shanghai Aerospace Control Technology Research Institute, Shanghai 201109, China
*
Author to whom correspondence should be addressed.
Remote Sens. 2026, 18(7), 1003; https://doi.org/10.3390/rs18071003
Submission received: 14 February 2026 / Revised: 24 March 2026 / Accepted: 25 March 2026 / Published: 27 March 2026

Highlights

What are the main findings?
  • SG-YOLO, a lightweight multispectral detector for UAVs, is proposed, featuring novel modules (SGDS, SSIAF, SCSF) for efficiently extracting and fusing cross-band features while suppressing redundant information.
  • Tests on the MODA dataset show SG-YOLO achieves 72.4% mAP50, outperforming both RGB baselines and other methods, balancing accuracy and efficiency.
What are the implications of the main findings?
  • Multispectral data (8 bands) is validated to enhance UAV detection robustness, overcoming limitations of RGB images.
  • The framework provides a practical, low-complexity solution for real-time multispectral perception on resource-constrained UAV platforms.

Abstract

Object detection in unmanned aerial vehicle (UAV) imagery remains a crucial yet challenging task due to complex backgrounds, large scale variations, and the prevalence of small objects. Visible-spectrum images lack robustness under all-weather and all-illumination conditions; by contrast, multispectral sensing provides complementary cues (e.g., thermal signatures) that improve detection robustness. However, existing multispectral solutions often incur high computational costs and are therefore difficult to deploy on resource-constrained UAV platforms. To address these issues, SG-YOLO is proposed, a lightweight and efficient multispectral object detection framework that aims to balance accuracy and efficiency. First, a Spectral Gated Downsampling Stem (SGDS) is designed, in which grouped convolutions and a gating mechanism are employed at the early stage of the network to extract band-specific features, thereby maximizing spectral complementarity while minimizing redundancy. Second, a Spectral–Spatial Iterative Attention Fusion (SSIAF) module is introduced, in which spectral-wise (channel) attention and spatial-wise attention are iteratively coupled and cascaded in a multi-scale manner to jointly model cross-band dependencies and spatial saliency, thereby aggregating high-level semantic information while suppressing redundant spectral responses. Finally, a Spatial–Channel Synergistic Fusion (SCSF) module is designed to enhance multi-scale and cross-channel feature integration in the neck. Experiments on the MODA dataset show that SG-YOLOs achieves 72.4% mAP50, outperforming the baseline by 3.2%. Moreover, compared with a range of mainstream one-stage detectors and multispectral detection methods, SG-YOLO delivers the best overall performance, providing an effective solution for UAV object detection while maintaining a favorable trade-off between model size and detection accuracy.

1. Introduction

In recent years, benefiting from the high maneuverability of aerial platforms [1] and advances in sensor miniaturization [2], unmanned aerial vehicles (UAVs) equipped with vision-based perception systems have become indispensable in emergency response and disaster relief [3,4], precision agriculture [5], and intelligent security surveillance [6]. Compared with satellite remote sensing and conventional ground-based observation, low-altitude remote sensing via UAVs offers unique advantages in terms of timeliness and spatial resolution. However, UAV-based visual detection still faces substantial challenges. Targets of interest are often extremely small, densely distributed, and easily confused with complex backgrounds [7]. Moreover, dynamic changes in aerial viewpoints cause the same object to exhibit pronounced variations in scale and appearance across scenes, placing stringent demands on the feature representation capability of detection algorithms [8].
Although deep-learning-based methods [9,10,11] have achieved remarkable progress in UAV remote-sensing detection, most studies are still limited to the visible (RGB) modality. Under low-visibility conditions such as low illumination, haze, or rainfall, the imaging quality of visible-spectrum data can degrade sharply due to insufficient ambient light and atmospheric scattering, leading to a substantial drop in detection performance [12,13,14]. In contrast, multispectral imaging can simultaneously capture the spectral reflectance characteristics of targets in the visible and selected bands such as near-infrared. By exploiting non-visible bands, it improves robustness against environmental interference [15,16,17] and provides discriminative information beyond human perception, often referred to as “spectral fingerprints” [18]. Similar multi-domain joint characterization strategies have also proven highly effective for robust target detection in broader remote sensing applications [19,20,21]. As shown in Figure 1, when pedestrians are difficult to distinguish from the background in RGB images, multispectral imagery can still reveal clearer target–background separability in the spectral domain.
For a long time, progress in multispectral object detection has been constrained by the lack of high-quality datasets. Most existing UAV benchmarks contain only two modalities, typically visible and thermal infrared (RGB-T) data [22,23], which has led many methods to focus primarily on bimodal fusion. To alleviate this bottleneck, Han et al. released the MODA dataset in 2025 [16], which, to the best of our knowledge, is the first large-scale UAV multispectral object detection benchmark. It provides a per-frame resolution of 1200 × 900 pixels and covers eight spectral bands ranging from 395 nm to 950 nm. While MODA enables multi-band feature learning, it also introduces new challenges for algorithm design.
With the substantial increase in input bands—from bimodal setups to eight-band inputs—existing fusion strategies face severe challenges. Deep-learning-based multispectral detectors are typically categorized into early-, mid-, and late-fusion schemes [24,25,26]. Although mid- and late-fusion approaches can leverage independent branches to extract modality-specific features, their parameter count grows roughly linearly (or multiplicatively depending on design) with the number of bands, making them difficult to meet real-time requirements on UAV edge devices [27,28]. For full-band inputs, the abundant spectral information can improve recognition robustness, but adjacent bands often exhibit high spectral correlation [29]. Without effective in-network feature selection or attentive mechanisms, treating all bands equally with vanilla convolution results in large computational redundancy and may allow useful signals to be overwhelmed by noise [30]. Therefore, achieving efficient de-redundancy and feature refinement within the network—while preserving the full-band information—is key to designing lightweight, real-time multispectral detectors for UAV platforms.
Accordingly, effectively exploiting rich multispectral information for robust detection, while suppressing inter-band redundancy and reducing model complexity, has become a pressing problem. To this end, a lightweight, real-time multispectral object detector is developed that fully utilizes spatial and spectral information for UAV applications. Our main contributions are as follows:
(1)
We propose a novel downsampling Stem to mitigate the early-stage over-compression of spectral information into a single embedding. The Stem integrates grouped downsampling and a spectral-gating mechanism to selectively screen and reweight multispectral cues within the first two layers, achieving a favorable balance between efficiency and de-redundancy.
(2)
We introduce an SSIAF module to address redundant fusion and insufficient feature representation in multispectral integration. By incorporating the iAFF attention mechanism, SSIAF adaptively enhances informative features and suppresses redundant responses in both channel and spatial dimensions.
(3)
To improve multi-scale detection in UAV scenarios, we design an SCSF module in the neck. SCSF combines multi-scale convolutions with lightweight ECA (Efficient Channel Attention) to guide cross-scale feature aggregation, thereby improving robustness to scale variation and small-object detection.

2. Related Work

2.1. Deep Learning-Based Object Detection

The core challenge of object detection lies in designing efficient and discriminative feature representation mechanisms. In recent years, the field has largely shifted to end-to-end representation learning based on deep neural networks [31]. From an architectural perspective, modern detectors can be broadly grouped into two paradigms: convolutional neural networks (CNNs) and Transformers.
Within the CNN family, detectors are commonly categorized into two-stage and one-stage pipelines. Two-stage detectors, represented by the R-CNN line, typically achieve strong accuracy but incur substantial computational and memory costs, which hinders real-time deployment on UAV edge platforms [32,33,34]. In contrast, one-stage detectors such as YOLO [35] and SSD [36] perform direct regression for classification and localization, offering higher throughput and better suitability for real-time UAV applications.
With the -development of Transformers, DETR-style detectors employ global self-attention to build an end-to-end framework that eliminates non-maximum suppression (NMS) [37]. Hierarchical designs such as Swin Transformer further enhance representation capability in complex scenes [38]. However, compared with CNNs, Transformers lack inherent inductive biases (e.g., locality and translation equivariance), which often leads to optimization difficulties and unstable generalization in remote-sensing scenarios with limited training data or distribution shifts [39].
In UAV remote sensing, characterized by dense object distribution, severe background clutter, and a predominance of small targets, researchers have proposed task-oriented improvements to generic detection frameworks. The drive for efficiency has spurred the development of fundamental lightweight convolutional operators, most notably the depthwise separable convolution introduced in MobileNet [40,41]. For efficiency, lightweight operators (e.g., GhostNet and GSConv) and model compression techniques have been explored to reduce parameters while retaining sensitivity to small targets [8,42]. Regarding feature interaction, recent progress emphasizes long-range dependency modeling (e.g., Mamba-based designs) and global feature fusion to mitigate feature degradation in cluttered backgrounds and improve localization accuracy [43]. In addition, enhanced multi-scale feature pyramids (FPN) and improved bounding-box regression losses have improved robustness to dramatic scale variations [44].
Despite these advances in deep learning-based object detection, most UAV remote-sensing detectors are still developed primarily for visible-light imagery and thus inherit its sensitivity to illumination variations and adverse weather (e.g., fog and rain). Moreover, relying on a single visible modality is subject to inherent physical limitations in extremely complex environments, which makes stable and reliable detection difficult. In contrast, multispectral detection integrates complementary information across spectral bands and leverages object “spectral fingerprints,” offering a promising route to more robust detection under challenging conditions.

2.2. Multispectral/Multi-Modal Fusion for Object Detection

Multispectral fusion of visible and thermal imagery (RGB–T) has demonstrated clear advantages for object detection in challenging environments. Current research primarily focuses on extracting and integrating complementary cues across modalities. Based on where fusion occurs, methods are commonly categorized as early-, mid-, or late-fusion [24]. Mid-fusion approaches typically employ dual-stream backbones to model modality-specific deep features. For instance, ICAFusion [45] proposes a dual-cross-attention transformer to model global feature interactions and capture cross-modal complementarities, while MMI-Det [46] designs a fusion-focusing module to extract discriminative cues from visible and thermal streams and emphasize object regions. These methods achieve state-of-the-art performance on RGB–T benchmarks such as M3FD [47] and Drone-Vehicle [23].
With the advancement of aerial remote sensing, higher spectral-resolution multispectral and hyperspectral sensors (e.g., 8+ bands) are increasingly used in precision agriculture and disaster monitoring. The MODA dataset [16], released by BIT in October 2025, is the first large-scale UAV dataset captured with an 8-band multispectral camera. Extending multi-branch fusion paradigms to such high-band inputs leads to linear or super-linear increases in parameters and computation, severely limiting real-time deployment on UAV edge platforms. To balance accuracy and efficiency, some studies adopt early-fusion strategies [27,48,49], stacking bands along the input channel dimension. Although early fusion maintains a lightweight architecture, standard convolutional operators (e.g., conventional detector Stems) apply uniform weighting and spatial aggregation across all bands, failing to account for heterogeneous physical characteristics of different spectral bands and thus risking that salient spectral fingerprints are masked by background noise or redundancy [17].
In summary, existing multispectral detectors still struggle to reconcile band scalability with computational cost and lack specialized perceptual operators for high-spectral-resolution features. To address these gaps, we propose a lightweight detection framework that (1) reconstructs the Stem with grouped spectral-aware processing and gating to perform differentiated feature extraction at the input stage and (2) integrates an iterative attention feature fusion (iAFF) module to deeply merge multispectral cues and suppress redundancy at minimal computational overhead.

3. Methodology

3.1. Overview of Our Method

The overall architecture of the proposed SG-YOLO is shown in Figure 2. SG-YOLO is a lightweight, high-efficiency detector specifically designed for multispectral small-object detection in UAV aerial imagery.
Input is an N × H × W multispectral image (where N denotes the number of spectral bands). The input first passes through our proposed SGDS (Spectral Gated Downsampling Stem). SGDS decouples different bands during the first two downsampling stages and allocates adaptive weights to each band via a gating mechanism, thereby enhancing responses of informative bands and suppressing redundant noise to provide a more discriminative low-level representation for the backbone.
In the backbone, we employ the SSIAF Block (Spectral–Spatial Iterative Attentional Fusion Block) to strengthen feature extraction. SSIAF adopts a cascaded attention scheme that alternately (iteratively) models channel-wise and spatial-wise interactions, enabling deep fusion of spectral and spatial information and mitigating redundancy accumulation when multispectral features are stacked in deep layers.
The neck handles cross-layer interaction and fusion of multi-scale features. To improve multi-scale fusion quality and channel-wise semantic interaction, we introduce the SCSF Block (Spatial–Channel Synergy Fusion Block) in the neck: it captures contextual information at different receptive fields using multi-scale convolutional kernels and dynamically reinforces salient channels via channel attention, thereby enhancing representation for targets at various scales, especially small and medium objects.
Finally, the multi-scale features produced by the neck are fed into three detection heads for classification and bounding-box regression, yielding robust detection across scales. The overall design emphasizes effective utilization and fusion of multispectral information while remaining parameter- and computation-efficient to facilitate deployment on resource-constrained UAV platforms.

3.2. Spectral Gated Downsampling Stem

Multispectral imagery extends the spectral dimension by incorporating bands beyond visible light (e.g., near-infrared and short-wave infrared). These additional bands provide critical complementary cues under complex backgrounds, low-contrast conditions, and dim illumination, thereby significantly enhancing a detector’s discriminative capability. Conventional RGB-based object detectors are designed to process I R G B H × W × 3 , whereas multispectral inputs are represented as I M S I H × W × N . The simplest adaptation is to change the input channels of the first convolution to support N-channel inputs. However, this design forces spectral features to be directly compressed into a shared mapping through a single convolution layer, leading to overly early fusion and potential dilution of band-specific information.
Based on this observation, we follow the principle of “late fusion, spectral decoupling, and adaptive recalibration” in our network design: we maintain band-wise independent spatial feature streams in early layers to preserve spectral fingerprints and then use a lightweight gating mechanism to emphasize informative spectral signals while suppressing redundant noise. This produces cleaner and more discriminative low-level representations for subsequent deep spectral–spatial fusion.
As illustrated in Figure 3, SGDS consists of two band-grouped downsampling convolutions and a lightweight channel-gating unit. Given a multispectral input I M S I with N spectral bands, the module first performs two grouped convolution downsampling operations. Unlike standard convolutions that jointly process all input channels, we set the number of groups to N to ensure that each band remains independent during spatial feature extraction.
In the first downsampling stage, the number of channels is expanded from N to an intermediate channel dimension Cmid (subject to Cmid % N = 0), while the spatial resolution is reduced by half. The computation can be expressed as:
F 1 = δ ( B ( C o n v 3 × 3 , s = 2 , g r o u p s = N ( I M S I ) ) ) R C m i d × H 2 × W 2
where δ ( ) denotes the SiLU activation function, and B ( ) denotes batch normalization (BatchNorm2d). Subsequently, the second downsampling stage further increases the number of feature channels to the final output dimension Cout (with the constraint Cout % N = 0), while the spatial resolution is halved again:
F 2 = δ ( B ( C o n v 3 × 3 , s = 2 , g r o u p s = N ( X ( 1 ) ) ) ) R C o u t × H 4 × W 4
Through these two downsampling operations, each spectral band is independently mapped to Cout/N feature channels. This design effectively avoids forced mixing of spectral characteristics at the network entrance, thus preserving valuable band-discriminative information for subsequent processing.
After the grouped downsampling, we introduce a lightweight spectral gating unit to adaptively recalibrate the importance of each channel. The unit follows a “squeeze-and-excitation” mechanism: it first applies global average pooling to squeeze the feature map F 2 along the spatial dimensions, producing a channel descriptor:
z = G A P ( F 2 )
Then, a simple two-layer bottleneck fully connected module (implemented as 1 × 1 convolutions in code) is used to capture nonlinear inter-channel dependencies and generate per-channel weights:
w = σ ( W 2 δ ( W 1 z ) )
where W 1 and W 2 are the weights of the convolution layers, δ ( ) denotes the SiLU activation function, and σ ( ) denotes the Sigmoid function. The resulting gating weights w lie in the range [0, 1]. The final output of the module is the feature map modulated by these gating weights:
F 2 = w F 2
where denotes element-wise multiplication. This gating mechanism can dynamically enhance informative band features and suppress redundant or noisy band responses according to the input content, thereby providing the backbone network with a more discriminative low-level spectral–spatial representation.
In summary, the SGDS module, through the coordinated design of grouped convolution and the gating mechanism, achieves efficient downsampling while markedly improving the model’s selective perception of multispectral information, laying a solid foundation for subsequent deep feature extraction.

3.3. Spectral–Spatial Iterative Attentional Fusion

In UAV-acquired multispectral imagery, the feature representation of small targets is extremely weak. Traditional feature extraction modules (e.g., the standard C3K2 module in YOLO11) mainly rely on simple linear stacking and residual connections. When dealing with multispectral data that exhibit high spectral correlation and complex spatial structures, this design can easily introduce feature redundancy and overwhelm critical small-target cues. To enable more refined feature selection and enhancement, we propose a Spectral–Spatial Iterative Attention Fusion (SSIAF) module.
SSIAF is a substantial improvement over the C3K2 structure in YOLO11, and its overall architecture is shown in Figure 4. The module consists of two residual units. In each unit, CBS and depthwise separable convolution (DWConv) are used for efficient feature extraction, and the residual connection is then implemented via the iAFF module [50].
The core of SSIAF lies in the iterative Attentional Feature Fusion (iAFF) unit. Through a dual-branch attention mechanism, iAFF captures both local spatial context and global spectral correlation. Different from conventional one-shot attention, iAFF adopts an iterative strategy: the first fusion produces an initial fused feature, which then guides a second-stage re-allocation of attention weights, enabling progressive feature refinement.
The specific computation is illustrated in Figure 5. Let the input feature map be F . In the SSIAF branch, the feature is processed by convolution to obtain an intermediate feature F c o n v . F and F c o n v are first added element-wise and then fused via Multi-Scale Channel Attention (MS-CAM). Next, the MS-CAM module is applied iteratively to perform a second attention-based fusion on the already fused features, ultimately producing a high-quality fused representation.
The MS-CAM module used in this work is shown in Figure 6. To encourage the network to attend to both global information and local details, MS-CAM contains two branches: a global channel-attention branch and a local-attention branch.
The detailed computation of iAFF is as follows:
Y = i A F F ( F , F c o n v ) = ( F φ ( F ) ) ( F c o n v ( 1 φ ( F ) ) )
Among them, F and F c o n v denote the original feature map and the intermediate feature obtained after convolution, respectively. The symbol φ ( ) indicates that the feature map is processed by the MS-CAM module. The input feature after the first integration is denoted as F , which can be expressed as:
F = ( F φ ( F ) ) ( F c o n v ( 1 φ ( F ) ) )
Here, F = F F c o n v . Assuming the feature map fed into MS-CAM is F z , the output feature map F z can be expressed as:
F z = σ ( g ( F z ) l ( F z ) )
Here, B ( ) denotes batch normalization, and G A P ( ) denotes global average pooling.

3.4. Spatial-Channel Synergy Fusion

In the Neck part of an object detection network, the core task is to efficiently fuse feature maps from different levels of the Backbone so as to aggregate low-level spatial details and high-level semantic information. This is crucial for UAV imagery scenarios where scale variation is severe and small objects are abundant. Traditional feature pyramid networks typically perform multi-scale feature fusion using simple upsampling followed by addition or concatenation, without fully considering the differences among features at different scales in terms of spatial detail and channel semantics. As a result, the fused features often lack sufficient discriminative power. To address this issue, we design a Spatial-Channel Synergistic Fusion module. The key innovation of this module lies in constructing a parallel multi-branch structure, which enables adaptive and fine-grained fusion of Neck features through the synergy between multi-scale spatial context capture and dynamic channel-attention re-calibration, thereby significantly improving the model’s perception of small and medium-sized objects.
As shown in Figure 7, the overall architecture of the SCSF module adopts a C3-like CSP (Cross Stage Partial) design. While preserving lightweight characteristics, it achieves joint optimization of multispectral features in the spatial and channel dimensions through the synergy between a multi-scale spatial branch and an enhanced channel-attention branch. The SCSF module follows the CSP philosophy to balance feature reuse and enriched gradient flow. The input feature is processed by two 1 × 1 convolutions, Conv1 and Conv2, which compress the channel dimension from C to C h = C × e (where e is the channel scaling factor, with a default value of 0.5), thereby reducing feature dimensionality and computational cost. The output of Conv1 is fed into the SCAB module for deeper feature enhancement, while the output of Conv2 is retained as a shortcut branch to preserve the original feature information. Finally, the features from the two branches are concatenated along the channel dimension to recover the original number of channels and then fused by Conv3 to produce the output feature Y .
SCAB is the core of the SCSF module. It is designed to accommodate the spatial-context and channel-semantic characteristics of multispectral data, and its structure is illustrated in Figure 8. It mainly consists of two parallel branches: an MS branch (multi-scale spatial feature extraction) and an ECA branch (enhanced channel attention).

3.4.1. Multi-Scale Spatial Feature Extraction Branch

To accommodate the wide range of target scales in UAV imagery, this branch employs parallel large-kernel depthwise separable convolutions to capture spatial context with different receptive fields. The detailed computation process is shown in Figure 8. The input feature is first split into three parallel branches (with kernel sizes K= {3, 5, 7}). In each branch, the corresponding scale features are extracted using a “depthwise separable convolution + pointwise convolution” combination:
F k = C o n v 1 × 1 ( D W C o n v k ( F ) ) , k K
where F denotes the input feature map, D W C o n v k ( F ) represents a depthwise convolution with kernel size k , which expands the receptive field while keeping channels independent; and C o n v 1 × 1 k ( ) denotes a 1 × 1 pointwise convolution that compresses the output channels of each branch to C h / 3 .
After concatenating the channel outputs of all branches { F k } k K convolution is applied to fuse them into a unified spatially enhanced feature:
F s = C o n v 1 × 1 f u s e ( C o n c a t ( F 3 , F 5 , F 7 ) )
After fusion, the spatial contextual information of targets at different scales is retained.

3.4.2. Enhanced Channel-Attention Branch

To address the issue that different spectral bands in multispectral data contribute unequally to semantic representation, this branch is optimized based on the Efficient Channel Attention (ECA) mechanism. Specifically, a 1D convolution with a dynamically determined kernel size is introduced to capture inter-channel dependencies. The detailed pipeline is illustrated in Figure 8.
The input feature is compressed into a channel-wise statistical vector via Global Average Pooling:
Z = G A P ( X )
Here, Z C h × 1 × 1 reflects the global semantic information of each channel. The compressed vector Z is then fed into a 1D convolution to capture inter-channel correlations, and a Sigmoid activation is applied to generate the channel-attention weights:
α = σ ( C o n v 1 d ( Z ) )
where σ ( ) denotes the Sigmoid function and α 0 , 1 C h × 1 × 1 , enabling the enhancement of informative channels and suppression of redundant ones.
Finally, the channel-attention weights are multiplied element-wise with the original feature, followed by a 1 × 1 convolution to adjust the channel number and obtain the channel-enhanced feature:
F c = C o n v 1 × 1 ( F α )
where denotes element-wise multiplication, and F c C h × H × W .

3.4.3. Spatial–Channel Feature Fusion and Modulation

The spatial-enhanced feature F s and the channel-enhanced feature F c are concatenated along the channel dimension to obtain a fused feature. The fused feature is then passed through a 1 × 1 convolution to restore the number of channels to C h , and a Sigmoid activation is applied to generate the spatial–channel collaborative attention map:
M = σ ( C o n v 1 × 1 ( F ) )
where M 0 , 1 C h × H × W , enabling dual-dimensional modulation of the features in both spatial and channel domains. Finally, the attention map and the original input feature are modulated via element-wise multiplication, followed by a 1 × 1 convolution to match the channel dimension, and a residual connection is introduced to alleviate gradient vanishing:
Y = C o n v 1 × 1 ( F M ) + F

4. Experimental Validation and Analysis

In this section, we conduct experiments to verify the effectiveness of the proposed method and perform a comprehensive evaluation and comparison with state-of-the-art approaches. We adopt standard evaluation metrics for object detection, including Precision (P), Recall (R), F1-score, mean Average Precision (mAP), as well as efficiency metrics GFLOPs and Parameters. The definitions and calculations of these metrics follow the common protocols in the field. The formulas are as follows:
P r e c i s i o n = T P T P + F P
R e c a l l = T P T P + F N
F 1 - s c o r e = 2 × Precision × Recall Precision + Recall
AP = n = 1 N ( R n R n 1 ) P n
mAP = 1 N i = 1 N AP i
G F L O P s = l = 1 L M A C s l 10 9
Here, T P , F P , and F N denote the number of true positive, false positive, and false negative detections, respectively. P n and R n denote the Precision and Recall at the sampling point n , respectively, and N is the total number of points at which the Recall value changes. AP i represents the Average Precision for the class of i . M A C s l indicates the number of Multiply–Accumulate Operations in the layer l .

4.1. Data Set Used for Experiments

To evaluate the effectiveness of SG-YOLO, extensive experiments were conducted on the MODA dataset [16]. Proposed by Beijing Institute of Technology, MODA is the first large-scale multispectral UAV object detection dataset. It contains 14,041 multispectral images, covering 8 categories with a total of 330,191 oriented annotations. Each MSI image has a resolution of 1200 × 900 pixels and includes 8 spectral bands spanning 395–950 nm. The dataset was collected across diverse urban scenes from different periods.
As shown in Figure 9a, MODA covers 8 typical ground-object categories with more than 300,000 annotated instances in total. Among them, small vehicles (car) and pedestrians (pedestrian) account for a large proportion, which is consistent with the natural target distribution in real remote-sensing observation scenarios. Notably, the class distribution ratios in the training and test sets are highly consistent (approximately 7:3). This rigorous split ensures the fairness and reliability of subsequent experimental evaluations. Although the dataset exhibits a certain long-tail distribution, even the categories with fewer samples (e.g., bus and tricycle) still contain more than 1000 instances each, which is sufficient to support deep learning models in learning and generalizing features of rare classes.
Figure 9b presents a scatter plot of object width and height distributions, showing that a large number of targets are concentrated in the range below 200 × 200 pixels. Such small objects are particularly challenging for feature extraction. Meanwhile, target sizes span from only a few pixels to several hundred pixels, forming a rich feature space and placing high demands on the model’s multi-scale feature representation capability. In addition, the spatial distribution heatmap in Figure 10 confirms that the dataset does not suffer from center bias: objects are randomly distributed across images, ensuring realistic evaluation and improving the assessment of model robustness in complex scenarios.

4.2. Experimental Settings

Computer configurations and environment: All experiments in this study were performed on a computing workstation running the Ubuntu 20.04 LTS operating system. The hardware configuration comprised an Intel Core i9-10850K CPU (Intel Corporation, Santa Clara, CA, USA) @3.60 GHz 32 GB of RAM, and an NVIDIA GeForce RTX 3090 GPU (NVIDIA Corporation, Santa Clara, CA, USA). The software stack was built on Python 3.10.16, with deep learning frameworks supported by PyTorch 2.5.1 and CUDA 12.4.
Implementation Details: We employed the Stochastic Gradient Descent (SGD) optimizer to train the network, with the hyperparameters set as follows: an initial learning rate of 0.01, a weight decay of 5 × 10−4, and a momentum of 0.937. The model was trained for 300 epochs with a batch size of 32, and the input image size was set to 640. Data augmentation techniques included Mosaic (with a probability of 1.0), Mixup (with a probability of 0.0, i.e., disabled), and horizontal flipping (with a probability of 0.5). Due to the unique characteristics of multispectral data, HSV color space adjustment was not utilized in this study. During the inference phase, Non-Maximum Suppression (NMS) was applied with an Intersection over Union (IoU) threshold set to 0.7.

4.3. Ablation Experiments

4.3.1. Ablation Study on Input Spectral Bands

To verify the effectiveness of multispectral image inputs, we trained and tested eight detectors using both the visible version of the MODA dataset and its multispectral counterpart. We only modified the detectors by changing the number of input channels in the first layer to match the number of multispectral bands; the MODA dataset used in this work contains 8 channels. The experimental results are summarized in Table 1, where the best results are highlighted in bold. Multispectral input demonstrates clear effectiveness in the object detection task.
Compared with visible-light input, models using multispectral images achieve consistent improvements across five key metrics: Precision, Recall, F1-Score, mAP50, and mAP50:95. On average, mAP50 increases by 2.9 percentage points and mAP50:95 increases by 3.3 percentage points. This trend remains consistent across different model scales and detector variants, demonstrating the general benefit of multispectral information for improving detection performance. Notably, the additional computational cost introduced by multispectral input is small: the largest increase in computation occurs on YOLOv5n, but it is only 0.6 GFLOPs, while the parameter count remains essentially unchanged. This indicates that multispectral inputs improve detection accuracy while maintaining good computational efficiency. Overall, these results confirm that the richer spectral information provided by multispectral images can effectively enhance the model’s representation capability, thereby improving the accuracy and robustness of object detection.

4.3.2. Module Ablation Study

To evaluate the effectiveness of the proposed modules, we conducted comprehensive ablation experiments using YOLO11n and YOLO11s as baselines. Table 2 and Table 3 present two extensive ablation studies that assess the individual and combined effects of the proposed SGDS, SSIAF, and SCSF modules on the performance of the SG-YOLO model.
A, B, C, and D denote the baseline network and the networks obtained by progressively adding the SGDS, SSIAF, and SCSF modules, respectively. First, we compare the baseline (Group A) with Group B, which contains only the SGDS module. For SG-YOLOn, mAP50 increases from 0.65 to 0.662 and mAP50:95 rises from 0.482 to 0.488, while the parameter count and computational cost remain essentially unchanged (Parameters: 2.66 M to 2.65 M; GFLOPs: unchanged at 6.7). The improvement is more pronounced for SG-YOLOs: mAP50 increases by 2.75% and Precision by 3.44%, with slight reductions in parameters (9.70 M to 9.68 M) and computation (22.6 to 21.7 GFLOPs). These results indicate that SGDS effectively enhances multispectral object detection capability without increasing model size or computational burden.
Next, after progressively introducing SSIAF on top of SGDS (Group C), SG-YOLOn achieves mAP50 = 0.669 and Recall improves by 1.2% (0.624 to 0.635). For SG-YOLOs, mAP50 increases to 0.720 and Recall improves by 1.5% (0.66 to 0.675), with parameters and computation remaining largely stable. With the further addition of SCSF (Group D), SG-YOLOn reaches mAP50 = 0.679 and mAP50:95 = 0.501, with Precision improving accordingly, while computation drops back to 7.6 GFLOPs. SG-YOLOs further improves to mAP50 = 0.724 and mAP50:95 = 0.553, with Precision rising to 0.723. Although parameters and computation increase slightly, overall performance continues to improve, confirming that the three modules work synergistically without redundancy.
To evaluate the detection performance of the proposed network on multi-scale targets, we categorize the objects according to the standard COCO evaluation metrics [51] based on their pixel areas: small objects ( a r e a < 3 2 2 ), medium objects ( 3 2 2 a r e a < 9 6 2 ), and large objects ( a r e a 9 6 2 ). We compared SG-YOLO with the baseline network, and the results are presented in Table 4. The experimental results indicate that, whether for small, medium, or large objects, SG-YOLO achieves varying degrees of improvement in average precision compared to the baseline. This demonstrates that the proposed network exhibits more robust and superior detection capabilities across all object scales.
As shown in Figure 11 and Figure 12, we compare AP across different categories for SG-YOLOn and SG-YOLOs. For both the n and s models, the Group D model achieves the best detection accuracy in the majority of categories. This suggests that our method does not merely improve detection for a single class but delivers consistent gains across all categories to varying degrees. Overall, the proposed approach achieves substantial improvements in detection performance with only a modest increase in parameters and computation, fully validating the rationale and synergistic effectiveness of the proposed module combination.

4.3.3. Visualization Results

To better illustrate the improvements of SG-YOLO over the baseline network, we selected several test images from diverse scenarios and conducted a qualitative comparison with the baseline. As shown in Figure 13, we present the multispectral detection results of YOLO11s and SG-YOLO under different scenes. In the first set of images, due to the direct compression of multispectral data, the baseline model mistakenly detects flowers on a tree as pedestrians, whereas SG-YOLO avoids this false detection by filtering band information at an early stage. In the second set (top-right), the shadow cast by an electric scooter leads the baseline model to misclassify it as a car based on its shape. In the third set, patterns on the ground cause the baseline model to incorrectly recognize markings on the basketball court as pedestrians. In contrast, SG-YOLO makes full use of spectral information and effectively reduces false positives through early band filtering and subsequent spectral-attention fusion.
To further investigate the mechanism of background suppression and feature enhancement in SG−YOLO, we employed the Grad−CAM technique to visualize the activation maps of both the baseline model and our proposed SG−YOLOs using the cases from Figure 13. As illustrated in Figure 14, SG−YOLOs consistently exhibits superior background noise suppression across various scenarios. For instance, in the first row, the response intensity on the terrain surrounding the road is markedly lower than that of the baseline, while the activation on the target itself is significantly higher. A similar trend is observed in the subsequent image sets: the baseline model displays excessive attention toward background elements such as forests, which inevitably degrades detection precision. In contrast, SG−YOLOs demonstrates higher responsiveness in target regions and effectively suppresses large-scale background interference (e.g., forests and rooftops). Given that these background elements often share similar spectral signatures, these results validate that our proposed network effectively leverages spectral information to distinguish targets from complex backgrounds, thereby enhancing target saliency while minimizing false positives.

4.4. Comparison of Experiment with Previous Methods

We compared the performance of several mainstream detectors—YOLOv5, YOLOv8, YOLO11, and YOLOv12—on the MODA dataset, and further included two methods specifically designed for multispectral object detection, S2ADet [52] and OSSDet [16], the experimental results are summarized in Table 5. The results show that the proposed SG-YOLOs achieves the best detection accuracy for most categories. Although it underperforms StripRCNN and LSKNet-S2ANet on a few classes, our method requires substantially fewer parameters and far less computation than these two heavy models (231.8 GFLOPs and 194.9 GFLOPs, respectively). Moreover, SG-YOLOs attains the top performance on both mAP50 and mAP50:95, indicating the best overall detection accuracy among the compared approaches. In addition, SG-YOLOn delivers the best detection results within the n-scale model family. It is worth noting that our method slightly increases the parameter count and computational complexity compared with YOLO11; however, the increase is marginal and does not hinder deployment on edge devices such as UAV platforms.
Figure 15 presents qualitative comparisons of different detectors across various scenes. Red circles indicate false positives, while green circles highlight missed detections. As can be observed, in cluttered backgrounds, UAV targets often occupy only a very small portion of the image, placing stringent demands on a detector’s multi-scale capability. Moreover, although spectral information can provide additional cues, it may also introduce noise and interference.
As shown in the second and third rows of Figure 14, some detectors directly compress the spectral data for detection, making them susceptible to background noise and resulting in false positives—e.g., rooftop clutter, a flag-raising platform, and road stripes under trees are mistakenly detected as targets. In contrast, our method effectively mitigates these false alarms by selectively filtering band information. Meanwhile, for small-object detection in complex backgrounds, other detectors tend to suffer from a large number of missed detections. Although our method does not achieve perfect detection, it substantially reduces both missed targets and false positives, further underscoring the high level of difficulty of object detection from a UAV viewpoint.
To verify the generalization capability of the proposed SG-YOLO, we conducted comparative evaluations against other detectors on the public MMOT dataset [17]. This dataset also contains multispectral UAV imagery with targets at various scales and provides eight spectral bands. As shown in Table 6, SG-YOLO consistently achieves the best detection performance across multiple categories and attains the highest scores on both mAP50 and mAP50:95, demonstrating the superiority of the proposed method.

4.5. Inference Speed Analysis and Deployment Potential

To substantiate the claim that SG-YOLO is suitable for real-time perception on resource-constrained UAV platforms, we conducted a comprehensive analysis of its inference efficiency and deployment potential. First, we measured the actual inference speed of the proposed SG-YOLO variants on a desktop-grade GPU (NVIDIA GeForce RTX 4060, NVIDIA Corporation, Santa Clara, CA, USA) as a performance baseline. All models were tested with a batch size of 1 and an input resolution of 640 × 640 pixels under the PyTorch framework. The results, including the number of parameters, computational complexity (GFLOPs), and the critical metric of actual measured frames per second (FPS), are summarized in Table 7.
Even the more capable SG-YOLOs variant achieves a remarkable inference speed of 374.3 FPS on the desktop GPU, while the ultra-lightweight SG-YOLOn exceeds 640 FPS. This provides concrete, hardware-validated evidence of the model’s low-latency characteristics. To translate this efficiency into the context of edge deployment, we analyze the computational requirements against the capabilities of modern embedded processors commonly used in UAVs. The most computationally intensive variant, SG-YOLOs, requires 25.2 GFLOPs per inference. For a standard real-time perception requirement of 30 FPS, this translates to a sustained computational demand of approximately 0.756 TFLOPs (25.2 GFLOPs × 30). This demand is well within the theoretical peak performance of prevalent UAV-embedded AI platforms, such as the NVIDIA Jetson Orin Nano 8 GB (up to 20 TFLOPs FP16) and the Jetson AGX Xavier (up to 11 TFLOPs FP16). A conservative estimation, which accounts for practical factors like memory bandwidth and typical accelerator utilization rates, strongly suggests that SG-YOLOs can reliably achieve frame rates well above 30 FPS on such platforms. The SG-YOLOn variant, with its minimal computational footprint of only 7.6 GFLOPs, is projected to operate at extremely high frame rates, thereby freeing substantial computational headroom for other critical onboard tasks such as sensor fusion, path planning, or communications.
In conclusion, the combination of high measured FPS on standard hardware and a favorable theoretical performance profile on target edge devices confirms that the lightweight design of SG-YOLO is not merely a theoretical advantage but a practical enabler for efficient deployment.

5. Conclusions

This paper proposes the SG-YOLO framework, an efficient small-object detection solution tailored for multispectral UAV aerial imagery. The framework employs the proposed SGDS module to perform early-stage feature extraction across different spectral bands and gated band selection, enabling effective discrimination of spectral feature importance. The SSIAF module leverages cascaded feature-attention fusion to integrate high-level semantic information across spectra, enhancing both local and global channel interactions while suppressing channel redundancy. In addition, SCSF strengthens multi-scale feature fusion, preserving channel interaction while enabling effective cross-scale aggregation.
Extensive experiments on the MODA dataset demonstrate that using multispectral imagery yields higher detection accuracy than using visible-light images alone. Moreover, SG-YOLO achieves strong performance in both accuracy and efficiency, validating its suitability for real-time multispectral UAV perception.
Beyond its direct application in UAV remote sensing, the design principles of SG-YOLO offer transferable insights for broader research areas. The SGDS module presents a paradigm for early-stage, input-aware gating and de-redundancy in multi-modal data fusion, which is applicable to other scenarios involving high-dimensional, correlated inputs, such as autonomous driving sensor fusion (camera, LiDAR, radar) or multi-modal medical image analysis. Nevertheless, object detection from UAV viewpoints remains highly challenging. In extreme scenarios with severe background interference and minimal spectral differences among categories, the proposed method still requires improved feature extraction and background suppression. Future work will focus on two key directions: enhancing the model’s performance in complex backgrounds and conducting direct deployment and performance validation on specific embedded platforms (e.g., the Jetson series). These efforts aim to further improve the model’s generalizability across different UAV platforms and challenging environments, thereby broadening its applicability in UAV remote sensing tasks.

Author Contributions

Conceptualization, B.Z. and L.W.; Methodology, L.W., K.L. and Q.T.; Software, B.Z. and Q.Y.; Validation, B.Z. and Q.Y.; Formal analysis, B.Z.; Investigation, L.W., Q.Y., K.L. and Q.T.; Resources, K.L. and Q.T.; Data curation, Q.Y.; Writing—original draft, B.Z.; Writing—review and editing, L.W.; Visualization, B.Z.; Supervision, L.W.; Funding acquisition, L.W., K.L. and Q.T. All authors have read and agreed to the published version of the manuscript.

Funding

This research was funded by the 111 Project and the Industry-University-Research Cooperation Fund of the Eighth Academy of China Aerospace Science and Technology Corporation: SAST2021-008.

Data Availability Statement

The raw data supporting the conclusions of this article will be made available by the authors on request.

Conflicts of Interest

Author Qinyan Tan was employed by the company China Aerospace Science and Technology Group Co., Ltd. The remaining authors declare that the research was conducted in the absence of any commercial or financial relationships that could be construed as a potential conflict of interest.

References

  1. Meng, K.; Wu, Q.; Xu, J.; Chen, W.; Feng, Z.; Schober, R.; Swindlehurst, A.L. UAV-Enabled Integrated Sensing and Communication: Opportunities and Challenges. IEEE Wirel. Commun. 2024, 31, 97–104. [Google Scholar] [CrossRef]
  2. Zhang, X.; Wang, J.; Wang, S.; Wang, M.; Wang, T.; Feng, Z.; Zhu, S.; Zheng, E. FAEM: Fast Autonomous Exploration for UAV in Large-Scale Unknown Environments Using LiDAR-Based Mapping. Drones 2025, 9, 423. [Google Scholar] [CrossRef]
  3. Galve, J.P.; Pérez-García, J.L.; Ruano, P.; Gómez-López, J.M.; Reyes-Carmona, C.; Moreno-Sánchez, M.; Jerez-Longres, P.S.; Ghadimi, M.; Barra, A.; Mateos, R.M.; et al. Applications of UAV Digital Photogrammetry in Landslide Emergency Response and Recovery Activities: The Case Study of a Slope Failure in the A-7 Highway (S Spain). Landslides 2025, 22, 1383–1396. [Google Scholar] [CrossRef]
  4. Han, Y.; Duan, B.; Guan, R.; Yang, G.; Zhen, Z. LUFFD-YOLO: A Lightweight Model for UAV Remote Sensing Forest Fire Detection Based on Attention Mechanism and Multi-Level Feature Fusion. Remote Sens. 2024, 16, 2177. [Google Scholar] [CrossRef]
  5. Dong, H.; Dong, J.; Sun, S.; Bai, T.; Zhao, D.; Yin, Y.; Shen, X.; Wang, Y.; Zhang, Z.; Wang, Y. Crop Water Stress Detection Based on UAV Remote Sensing Systems. Agric. Water Manag. 2024, 303, 109059. [Google Scholar] [CrossRef]
  6. Fang, H.; Liao, Z.; Wang, X.; Chang, Y.; Yan, L. Differentiated Attention Guided Network Over Hierarchical and Aggregated Features for Intelligent UAV Surveillance. IEEE Trans. Ind. Inform. 2023, 19, 9909–9920. [Google Scholar] [CrossRef]
  7. Gui, S.; Song, S.; Qin, R.; Tang, Y. Remote Sensing Object Detection in the Deep Learning Era—A Review. Remote Sens. 2024, 16, 327. [Google Scholar] [CrossRef]
  8. Fan, Q.; Li, Y.; Deveci, M.; Zhong, K.; Kadry, S. LUD-YOLO: A Novel Lightweight Object Detection Network for Unmanned Aerial Vehicle. Inf. Sci. 2025, 686, 121366. [Google Scholar] [CrossRef]
  9. Chen, L.; Liu, C.; Li, W.; Xu, Q.; Deng, H. DTSSNet: Dynamic Training Sample Selection Network for UAV Object Detection. IEEE Trans. Geosci. Remote Sens. 2024, 62, 5902516. [Google Scholar] [CrossRef]
  10. Lu, W.; Lan, C.; Niu, C.; Liu, W.; Lyu, L.; Shi, Q.; Wang, S. A CNN-Transformer Hybrid Model Based on CSWin Transformer for UAV Image Object Detection. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2023, 16, 1211–1231. [Google Scholar] [CrossRef]
  11. Zhong, H.; Zhang, Y.; Shi, Z.; Zhang, Y.; Zhao, L. PS-YOLO: A Lighter and Faster Network for UAV Object Detection. Remote Sens. 2025, 17, 1641. [Google Scholar] [CrossRef]
  12. Liu, W.; Li, W.; Zhu, J.; Cui, M.; Xie, X.; Zhang, L. Improving Nighttime Driving-Scene Segmentation via Dual Image-Adaptive Learnable Filters. IEEE Trans. Circuits Syst. Video Technol. 2023, 33, 5855–5867. [Google Scholar] [CrossRef]
  13. Feng, C.; Chen, Z.; Li, X.; Zhang, Y.; Wang, J.; Yang, J.; Cheng, M.-M.; Dai, Y.; Fu, Q. HazyDet: Open-Source Benchmark for Drone-View Object Detection with Depth-Cues in Hazy Scenes. arXiv 2024, arXiv:2409.19833. [Google Scholar]
  14. Hassaballah, M.; Kenk, M.A.; Muhammad, K.; Minaee, S. Vehicle Detection and Tracking in Adverse Weather Using a Deep Learning Framework. IEEE Trans. Intell. Transp. Syst. 2020, 22, 4230–4242. [Google Scholar] [CrossRef]
  15. Guo, J.; Gao, C.; Liu, F.; Meng, D.; Gao, X. DAMSDet: Dynamic Adaptive Multispectral Detection Transformer with Competitive Query Selection and Adaptive Feature Fusion. In Computer Vision—ECCV 2024; Leonardis, A., Ricci, E., Roth, S., Russakovsky, O., Sattler, T., Varol, G., Eds.; Lecture Notes in Computer Science; Springer: Cham, Switzerland, 2025; Volume 15085, pp. 1–15. [Google Scholar] [CrossRef]
  16. Han, S.; Xu, T.; Liu, P.; Li, J. MODA: The First Challenging Benchmark for Multispectral Object Detection in Aerial Images. arXiv 2025, arXiv:2512.09489. [Google Scholar] [CrossRef]
  17. Li, T.; Xu, T.; Wang, Y.; Qin, H.; Lin, X.; Li, J. MMOT: The First Challenging Benchmark for Drone-based Multispectral Multi-Object Tracking. arXiv 2025, arXiv:2510.12565. [Google Scholar]
  18. Bhargava, A.; Sachdeva, A.; Sharma, K.; Alsharif, M.H.; Uthansakul, P.; Uthansakul, M. Hyperspectral Imaging and Its Applications: A Review. Heliyon 2024, 10, e33208. [Google Scholar] [CrossRef]
  19. Li, H.-L.; Chen, S.-W. General Polarimetric Correlation Pattern: A Visualization and Characterization Tool for Target Joint-Domain Scattering Mechanisms Investigation. IEEE Trans. Geosci. Remote Sens. 2026, 64, 5200417. [Google Scholar] [CrossRef]
  20. Li, H.-L.; Chen, S.-W. Polyhedral Corner Reflectors Multidomain Joint Characterization With Fully Polarimetric Radar. IEEE Trans. Antennas Propag. 2025, 73, 10679–10693. [Google Scholar] [CrossRef]
  21. Li, H.-L.; Liu, S.-W.; Chen, S.-W. PolSAR Ship Characterization and Robust Detection at Different Grazing Angles With Polarimetric Roll-Invariant Features. IEEE Trans. Geosci. Remote Sens. 2024, 62, 5225818. [Google Scholar] [CrossRef]
  22. Razakarivony, S.; Jurie, F. Vehicle Detection in Aerial Imagery: A Small Target Detection Benchmark. J. Vis. Commun. Image Represent. 2016, 34, 187–203. [Google Scholar] [CrossRef]
  23. Sun, Y.; Cao, B.; Zhu, P.; Hu, Q. Drone-Based RGB-Infrared Cross-Modality Vehicle Detection via Uncertainty-Aware Learning. IEEE Trans. Circuits Syst. Video Technol. 2022, 32, 6700–6713. [Google Scholar] [CrossRef]
  24. Wan, D.; Lu, R.; Fang, Y.; Lang, X.; Shu, S.; Chen, J.; Shen, S.; Xu, T.; Ye, Z. YOLOv11-RGBT: Towards a Comprehensive Single-Stage Multispectral Object Detection Framework. arXiv 2025, arXiv:2506.14696. [Google Scholar]
  25. Qi, Y.; Yang, S.; Chen, J.; Zhang, M.; Zhu, J.; Liu, X.; Zheng, H. A Modality Alignment and Fusion-Based Method for Around-the-Clock Remote Sensing Object Detection. Sensors 2025, 25, 4964. [Google Scholar] [CrossRef] [PubMed]
  26. Zhao, W.; Zhao, Z.; Xu, M.; Ding, Y.; Gong, J. Differential Multimodal Fusion Algorithm for Remote Sensing Object Detection through Multi-Branch Feature Extraction. Expert Syst. Appl. 2025, 265, 125826. [Google Scholar] [CrossRef]
  27. Zhang, X.; Li, Y.; Wang, Z.; Liu, C.; Chen, H. Rethinking Early-Fusion Strategies for Improved Multispectral Object Detection. IEEE Trans. Intell. Veh. 2025, 10, 3728–3742. [Google Scholar] [CrossRef]
  28. Zhuo, Z.; Lu, R.; Yao, Y.; Wang, S.; Zheng, Z.; Zhang, J.; Yang, X. TAF-YOLO: A Small-Object Detection Network for UAV Aerial Imagery via Visible and Infrared Adaptive Fusion. Remote Sens. 2025, 17, 3936. [Google Scholar] [CrossRef]
  29. Chang, C.-I.; Du, Q.; Sun, T.-L.; Althouse, M.L.G. A Joint Band Prioritization and Band-Decorrelation Approach to Band Selection for Hyperspectral Image Classification. IEEE Trans. Geosci. Remote Sens. 1999, 37, 2631–2641. [Google Scholar] [CrossRef]
  30. Taşkın, G.; Kaya, H.; Bruzzone, L. Feature Selection Based on High Dimensional Model Representation for Hyperspectral Images. IEEE Trans. Image Process. 2017, 26, 2918–2928. [Google Scholar] [CrossRef]
  31. Liu, L.; Ouyang, W.; Wang, X.; Wang, P.; Zeng, W.; Qiao, Y.; Tang, X.; Loy, C.C.; Lin, D. Deep Learning for Generic Object Detection: A Survey. Int. J. Comput. Vis. 2020, 128, 261–318. [Google Scholar] [CrossRef]
  32. Girshick, R.; Donahue, J.; Darrell, T.; Malik, J. Rich Feature Hierarchies for Accurate Object Detection and Semantic Segmentation. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Columbus, OH, USA, 23–28 June 2014; pp. 580–587. [Google Scholar] [CrossRef]
  33. Girshick, R. Fast R-CNN. In Proceedings of the IEEE International Conference on Computer Vision (ICCV), Santiago, Chile, 7–13 December 2015; pp. 1440–1448. [Google Scholar] [CrossRef]
  34. Ren, S.; He, K.; Girshick, R.; Sun, J. Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks. In Advances in Neural Information Processing Systems 28 (NIPS 2015); Cortes, J., Lawrence, N., Lee, D., Sugiyama, M., Garnett, R., Eds.; Curran Associates, Inc.: Red Hook, NY, USA, 2015; pp. 91–99. [Google Scholar] [CrossRef]
  35. 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] [CrossRef]
  36. Liu, W.; Anguelov, D.; Erhan, D.; Szegedy, C.; Reed, S.; Fu, C.-Y.; Berg, A.C. SSD: Single Shot Multibox Detector. In Proceedings of the European Conference on Computer Vision (ECCV), Amsterdam, The Netherlands, 8–16 October 2016; pp. 21–37. [Google Scholar] [CrossRef]
  37. Carion, N.; Massa, F.; Synnaeve, G.; Usunier, N.; Kirillov, A.; Zagoruyko, S. End-to-End Object Detection with Transformers. In Computer Vision—ECCV 2020; Vedaldi, A., Bischof, H., Brox, T., Tang, X., Eds.; Lecture Notes in Computer Science; Springer: Cham, Switzerland, 2020; Volume 12346, pp. 213–229. [Google Scholar] [CrossRef]
  38. 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); IEEE: Piscataway, NJ, USA, 2021; pp. 10012–10022. [Google Scholar] [CrossRef]
  39. Chen, X.; Xie, S.; He, K. An Empirical Study of Training Self-Supervised Vision Transformers. In Proceedings of the IEEE/CVF International Conference on Computer Vision (ICCV); IEEE: Piscataway, NJ, USA, 2021; pp. 9640–9649. [Google Scholar]
  40. Howard, A.G.; Zhu, M.; Chen, B.; Kalenichenko, D.; Wang, W.; Weyand, T.; Andreetto, M.; Adam, H. MobileNets: Efficient Convolutional Neural Networks for Mobile Vision Applications. arXiv 2017, arXiv:1704.04861. [Google Scholar] [CrossRef]
  41. Sandler, M.; Howard, A.; Zhu, M.; Zhmoginov, A.; Chen, L.-C. MobileNetV2: Inverted Residuals and Linear Bottlenecks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition (CVPR), Salt Lake City, UT, USA, 18–22 June 2018; pp. 4510–4520. [Google Scholar]
  42. Li, Y.; Wang, Y.; Ma, Z.; Wang, X.; Tang, Y. SOD-UAV: Small Object Detection for Unmanned Aerial Vehicle Images via Improved YOLOv7. In Proceedings of the 2024 IEEE International Conference on Acoustics, Speech and Signal Processing (ICASSP), Seoul, Republic of Korea, 14–19 April 2024; pp. 7610–7614. [Google Scholar] [CrossRef]
  43. 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, 5632814. [Google Scholar] [CrossRef]
  44. Liu, Y.; Cheng, X.; Xu, N.; Wang, L.; Wang, X.; Zhong, X. MFAE-YOLO: Multifeature Attention-Enhanced Network for Remote Sensing Images Object Detection. IEEE Trans. Geosci. Remote Sens. 2025, 63, 5631214. [Google Scholar] [CrossRef]
  45. Shen, J.; Chen, Y.; Liu, Y.; Zuo, X.; Fan, H.; Yang, W. ICAFusion: Iterative Cross-Attention Guided Feature Fusion for Multispectral Object Detection. Pattern Recognit. 2024, 145, 109913. [Google Scholar] [CrossRef]
  46. Zeng, Y.; Liang, T.; Jin, Y.; Li, Y. MMI-Det: Exploring Multi-Modal Integration for Visible and Infrared Object Detection. IEEE Trans. Circuits Syst. Video Technol. 2024, 34, 11198–11213. [Google Scholar] [CrossRef]
  47. Liu, J.; Fan, X.; Huang, Z.; Wu, G.; Liu, R.; Zhong, W.; Luo, Z. Target-Aware Dual Adversarial Learning and a Multi-Scenario Multi-Modality Benchmark to Fuse Infrared and Visible for Object Detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR); IEEE: Piscataway, NJ, USA, 2022; pp. 5802–5811. [Google Scholar] [CrossRef]
  48. Zhang, J.; Lei, J.; Xie, W.; Fang, Z.; Li, Y.; Du, Q. SuperYOLO: Super Resolution Assisted Object Detection in Multimodal Remote Sensing Imagery. IEEE Trans. Geosci. Remote Sens. 2023, 61, 5605415. [Google Scholar] [CrossRef]
  49. Chen, Y.; Da, F. YOLO-FMEN: Pixel-Level Image Fusion-Based Nighttime Object Detection Network. In Proceedings of the 2025 44th Chinese Control Conference (CCC); IEEE: Piscataway, NJ, USA, 2025; pp. 9179–9186. [Google Scholar] [CrossRef]
  50. Dai, Y.; Gieseke, F.; Oehmcke, S.; Wu, Y.; Barnard, K. Attentional Feature Fusion. In Proceedings of the 2021 IEEE Winter Conference on Applications of Computer Vision (WACV), Waikoloa, HI, USA, 3–8 January 2021; pp. 3559–3568. [Google Scholar]
  51. Lin, T.-Y.; Maire, M.; Belongie, S.; Hays, J.; Perona, P.; Ramanan, D.; Dollár, P.; Zitnick, C.L. Microsoft COCO: Common Objects in Context. In Proceedings of the European Conference on Computer Vision (ECCV), Zurich, Switzerland, 6–12 September 2014; Springer: Cham, Switzerland, 2014; pp. 740–755. [Google Scholar]
  52. He, X.; Tang, C.; Liu, X.; Zhang, W.; Sun, K.; Xu, J. Object Detection in Hyperspectral Image via Unified Spectral–Spatial Feature Aggregation. IEEE Trans. Geosci. Remote Sens. 2023, 61, 5521213. [Google Scholar] [CrossRef]
  53. Yuan, X.; Zheng, Z.; Li, Y.; Liu, X.; Liu, L.; Li, X.; Hou, Q.; Cheng, M.-M. Strip R-CNN: Large Strip Convolution for Remote Sensing Object Detection. arXiv 2025, arXiv:2501.03775. [Google Scholar] [CrossRef]
  54. Li, Y.; Hou, Q.; Zheng, Z.; Cheng, M.-M.; Yang, J.; Li, X. Large Selective Kernel Network for Remote Sensing Object Detection. In Proceedings of the 2023 IEEE/CVF International Conference on Computer Vision (ICCV), Paris, France, 2–6 October 2023; pp. 16748–16759. [Google Scholar]
Figure 1. Multispectral imagery improves target discriminability. In the RGB view (top), the pedestrian is difficult to identify due to background clutter. In the multispectral imaging (MSI) view (bottom), the target is more clearly separated from the background in terms of spectral characteristics, suggesting that spectral information helps distinguish targets from the background and facilitates object recognition.
Figure 1. Multispectral imagery improves target discriminability. In the RGB view (top), the pedestrian is difficult to identify due to background clutter. In the multispectral imaging (MSI) view (bottom), the target is more clearly separated from the background in terms of spectral characteristics, suggesting that spectral information helps distinguish targets from the background and facilitates object recognition.
Remotesensing 18 01003 g001
Figure 2. Overall architecture of SG-YOLO. Modules highlighted with red text or enclosed by red dashed boxes indicate the novel components proposed in this work.
Figure 2. Overall architecture of SG-YOLO. Modules highlighted with red text or enclosed by red dashed boxes indicate the novel components proposed in this work.
Remotesensing 18 01003 g002
Figure 3. Computation pipeline of the Spectral Gated Downsampling Stem (SGDS).
Figure 3. Computation pipeline of the Spectral Gated Downsampling Stem (SGDS).
Remotesensing 18 01003 g003
Figure 4. Architecture of the SSIAF module, where DWC denotes depthwise separable convolution.
Figure 4. Architecture of the SSIAF module, where DWC denotes depthwise separable convolution.
Remotesensing 18 01003 g004
Figure 5. Detailed computation process of the iAFF module.
Figure 5. Detailed computation process of the iAFF module.
Remotesensing 18 01003 g005
Figure 6. Detailed computation process of MS-CAM.
Figure 6. Detailed computation process of MS-CAM.
Remotesensing 18 01003 g006
Figure 7. Architecture of the SCSF module.
Figure 7. Architecture of the SCSF module.
Remotesensing 18 01003 g007
Figure 8. Architecture of the SCAB module and its detailed computation process.
Figure 8. Architecture of the SCAB module and its detailed computation process.
Remotesensing 18 01003 g008
Figure 9. (a) Category-wise instance distribution of the MODA dataset. (b) Target size distribution of the MODA dataset.
Figure 9. (a) Category-wise instance distribution of the MODA dataset. (b) Target size distribution of the MODA dataset.
Remotesensing 18 01003 g009
Figure 10. Heatmap of the spatial distribution of targets in the MODA dataset.
Figure 10. Heatmap of the spatial distribution of targets in the MODA dataset.
Remotesensing 18 01003 g010
Figure 11. Ablation study AP comparison plot across different categories for SG-YOLOn.
Figure 11. Ablation study AP comparison plot across different categories for SG-YOLOn.
Remotesensing 18 01003 g011
Figure 12. Ablation study AP comparison plot across different categories for SG-YOLOs.
Figure 12. Ablation study AP comparison plot across different categories for SG-YOLOs.
Remotesensing 18 01003 g012
Figure 13. Qualitative comparison of detection results between SG-YOLOs and the baseline network across different scenes: (a) ground-truth annotations, (b) baseline detection results, and (c) SG-YOLO detection results. False positives are highlighted with red circles, and missed detections are marked with green boxes.
Figure 13. Qualitative comparison of detection results between SG-YOLOs and the baseline network across different scenes: (a) ground-truth annotations, (b) baseline detection results, and (c) SG-YOLO detection results. False positives are highlighted with red circles, and missed detections are marked with green boxes.
Remotesensing 18 01003 g013
Figure 14. Grad-CAM visualization for the baseline YOLO11s and the proposed SG−YOLOs. Brighter colors indicate higher model attention to specific regions: (a) original image, (b) YOLO11s, and (c) SG−YOLOs.
Figure 14. Grad-CAM visualization for the baseline YOLO11s and the proposed SG−YOLOs. Brighter colors indicate higher model attention to specific regions: (a) original image, (b) YOLO11s, and (c) SG−YOLOs.
Remotesensing 18 01003 g014
Figure 15. Qualitative comparison with other detectors across different scenes: (a) ground truth, (b) YOLOv5s, (c) YOLOv8s, (d) YOLOv12s, and (e) SG-YOLOs. False positives are marked with red circles, and missed detections are highlighted with green circles.
Figure 15. Qualitative comparison with other detectors across different scenes: (a) ground truth, (b) YOLOv5s, (c) YOLOv8s, (d) YOLOv12s, and (e) SG-YOLOs. False positives are marked with red circles, and missed detections are highlighted with green circles.
Remotesensing 18 01003 g015
Table 1. Comparison of visible and multispectral inputs.
Table 1. Comparison of visible and multispectral inputs.
ModelImagesPreRecF1-ScoremAP50mAP50:95GFLOPsPara (M)
YOLOv5nRGB0.6260.5920.6090.6080.4437.32.58
YOLOv5nMSI0.6480.6020.6240.6320.4687.92.58
YOLOv5sRGB0.6740.6210.6460.6570.48724.89.40
YOLOv5sMSI0.7050.6350.6680.6920.523269.40
YOLOv8nRGB0.6360.5760.6050.6040.4428.33.08
YOLOv8nMSI0.6540.6070.6300.6390.4748.53.08
YOLOv8sRGB0.6640.6220.6420.6550.48829.411.41
YOLOv8sMSI0.6860.6420.6630.6840.5229.711.42
YOLO11nRGB0.6520.5870.6180.6250.4586.62.66
YOLO11nMSI0.6710.6080.6380.650.4826.72.66
YOLO11sRGB0.6750.6320.6530.6630.48622.39.70
YOLO11sMSI0.6980.6440.6700.6920.52922.69.70
YOLOv12nRGB0.6320.5880.6090.6110.4446.62.63
YOLOv12nMSI0.6620.5990.6290.6380.4786.72.63
YOLOv12sRGB0.6850.6160.6490.6660.49322.29.52
YOLOv12sMSI0.7040.6430.6720.6950.5322.59.52
Note: The best-performing results highlighted in bold.
Table 2. Ablation study of SG-YOLOn on MODA Dataset.
Table 2. Ablation study of SG-YOLOn on MODA Dataset.
ModelSGDSSSIAFSCSFPara (M)GFLOPsPreRecmAP50mAP50:95
A×××2.666.70.6710.6080.650.482
B××2.656.70.6740.6240.6620.488
C×2.737.70.6810.6330.6690.493
D2.737.60.6890.6340.6790.501
Note: The best-performing results highlighted in bold. “√” indicates inclusion, while “×” denotes exclusion.
Table 3. Ablation study of SG-YOLOs on MODA Dataset.
Table 3. Ablation study of SG-YOLOs on MODA Dataset.
ModelSGDSSSIAFSCSFPara (M)GFLOPsPreRecmAP50mAP50:95
A×××9.7022.60.6980.6440.6920.529
B××9.6821.70.7220.660.7110.537
C×9.71220.7130.6750.720.547
D9.9925.20.7230.6750.7240.553
Note: The best-performing results highlighted in bold. “√” indicates inclusion, while “×” denotes exclusion.
Table 4. Comparison of detection accuracy between SG-YOLO and baseline models for objects at different scales.
Table 4. Comparison of detection accuracy between SG-YOLO and baseline models for objects at different scales.
ModelAPsAPmAPlMaxDets
YOLO11n0.1390.3730.410100
SG-YOLOn0.163 (+2.4%)0.412 (+3.9%)0.462 (+5.2%)100
YOLO11s0.1660.4130.471100
SG-YOLOs0.203 (+3.7%)0.442 (+2.9%)0.512 (+4.1%)100
Note: The best-performing results highlighted in bold.
Table 5. Comparison results with other detection algorithms.
Table 5. Comparison results with other detection algorithms.
MethodCarBikePedestrianVanTruckBusTricycleAw-BikemAP50mAP50:95GFLOPsPara (M)
StripRCNN [53]0.9050.4520.3070.7610.6710.8900.5650.7360.6610.410231.845.2
LSKNet-S2Anet [54]0.9050.3890.4310.7610.6860.8950.5180.7250.6640.386194.929.9
S2ADet [52]0.9030.3500.4080.7210.5720.8660.5410.7130.6350.389406.065.2
OSSDet [16]0.9050.4530.4570.7920.6970.8990.5880.7270.6900.427263.136.5
YOLOv5n0.9640.4620.5390.6650.5350.8710.3250.6930.6320.4687.92.58
YOLOv5s0.9720.550.5910.7250.6210.9040.4350.7360.6920.52326.09.41
YOLOv8n0.9650.470.5430.6830.5210.9010.3520.9650.6390.4748.53.08
YOLOv8s0.9710.5580.6010.7270.5930.8950.3880.740.6840.5229.711.42
YOLO11n0.9410.4590.5250.6950.5560.910.4160.6790.650.4826.72.66
YOLO11s0.9680.550.6140.6980.6070.9070.4330.7610.6920.52922.69.70
SG-YOLOn0.9690.4990.5290.7340.60.9380.4620.7030.6790.5017.62.73
SG-YOLOs0.9730.580.6190.7350.6470.940.510.7850.7240.55325.29.99
Note: The best-performing results highlighted in bold.
Table 6. Detection results of different detectors on the MMOT dataset.
Table 6. Detection results of different detectors on the MMOT dataset.
MethodCarBikePedestrianVanTruckBusTricycleAw-BikemAP50mAP50:95GFLOPsPara (M)
YOLOv5n0.9360.2840.610.6270.3050.8470.1350.5570.5380.3957.92.58
YOLOv5s0.9550.3710.660.7160.380.8510.2390.5930.5960.45726.09.41
YOLOv8n0.9440.3130.5890.6290.4120.7970.1330.5810.550.4118.53.08
YOLOv8s0.9480.4220.6770.6620.3780.8770.2630.6190.6060.46829.711.42
YOLO11n0.9430.330.6120.6210.450.7810.1690.5630.5590.4236.72.66
YOLO11s0.9480.3930.6720.6870.4550.8690.2130.6150.6070.47022.69.70
SG-YOLOn0.9550.3960.6220.6440.3650.910.270.5760.5920.4437.62.73
SG-YOLOs0.9550.4790.6640.6650.4250.9420.3390.6190.6360.48225.29.99
Note: The best-performing results highlighted in bold.
Table 7. Inference speed comparison of different models on an RTX 4060 GPU.
Table 7. Inference speed comparison of different models on an RTX 4060 GPU.
ModelParams (M)GFLOPsInfrence Speed (FPS)
SG-YOLOn2.737.6641.7
SG-YOLOs9.9925.2374.3
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

Zhang, B.; Wang, L.; Yao, Q.; Li, K.; Tan, Q. SG-YOLO: A Multispectral Small-Object Detector for UAV Imagery Based on YOLO. Remote Sens. 2026, 18, 1003. https://doi.org/10.3390/rs18071003

AMA Style

Zhang B, Wang L, Yao Q, Li K, Tan Q. SG-YOLO: A Multispectral Small-Object Detector for UAV Imagery Based on YOLO. Remote Sensing. 2026; 18(7):1003. https://doi.org/10.3390/rs18071003

Chicago/Turabian Style

Zhang, Binjie, Lin Wang, Quanwei Yao, Keyang Li, and Qinyan Tan. 2026. "SG-YOLO: A Multispectral Small-Object Detector for UAV Imagery Based on YOLO" Remote Sensing 18, no. 7: 1003. https://doi.org/10.3390/rs18071003

APA Style

Zhang, B., Wang, L., Yao, Q., Li, K., & Tan, Q. (2026). SG-YOLO: A Multispectral Small-Object Detector for UAV Imagery Based on YOLO. Remote Sensing, 18(7), 1003. https://doi.org/10.3390/rs18071003

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