1. Introduction
Infrared small target detection (ISTD) is fundamental and critical in infrared search and tracking, long-range surveillance, remote sensing, and nighttime perception systems [
1,
2]. Compared with conventional object detection tasks, infrared small targets usually occupy only a very limited number of pixels and are characterized by weak radiation intensity and scarce texture information. Moreover, they are easily submerged in complex cluttered backgrounds such as cloud edges, sea-surface ripples, and high-reflective ground objects. As a result, ISTD frequently encounters target vanishing, high false alarm rates from background clutter, and significant shape distortion in real-world conditions. For such tasks, detection models are required not only to possess strong weak-target representation capability but also to maintain robust background suppression ability and low false alarm rates under complex cluttered environments.
Traditional ISTD approaches mainly include filtering-based methods, local contrast-based methods, and low-rank decomposition-based methods. Filtering-based methods rely on the assumption that the background is relatively smooth and enhance target responses through specifically designed filters while suppressing background interference [
3,
4]. Local contrast-based methods exploit grayscale differences between targets and surrounding regions to highlight salient responses. Low-rank decomposition-based methods model infrared images as the superposition of low-rank backgrounds and sparse targets for target separation [
5,
6]. Although these methods exhibit good interpretability, they heavily depend on handcrafted priors and often suffer from limited robustness in scenarios containing rapidly changing backgrounds, strong local high-brightness interference, or complex texture structures, thereby producing numerous pseudo-responses.
The success of convolutional neural networks in dense prediction tasks provides potential in ISTD methods. Different from conventional object detection methods based on bounding boxes, infrared small targets usually occupy only a few pixels and lack explicit structural features. Therefore, formulating ISTD as a pixel-wise binary semantic segmentation task has become the dominant paradigm in recent years, where precise target localization is achieved through pixel-level prediction. Under this segmentation-based framework, encoder–decoder architectures represented by U-Net [
7] provide an effective feature fusion structure for dense prediction. Many subsequent studies further introduce contextual modulation, local contrast enhancement, densely nested connections, and attention mechanisms to improve the discriminability of weak targets at the pixel level. For example, ACM [
8] enhances cross-layer feature interaction through asymmetric contextual modulation, ALCNet [
9] embeds local contrast priors into the network to strengthen target responses, DNA-Net [
10] utilizes densely nested connections to repeatedly aggregate and reconstruct multi-level features, and UIU-Net [
11] further improves feature representation capability through multi-resolution nested structures.
Recent years have witnessed rapid progress in ISTD, with increasing attention devoted to richer contextual modeling and more discriminative feature representation. Beyond conventional CNN-based feature enhancement, recent studies have explored transformer-based global dependency modeling, lightweight detection architectures, and hybrid representation learning to further improve robustness in complex cluttered scenes. In parallel, tensor-based spatiotemporal methods—such as LRTA-SP [
12] (Low-Rank Tensor Approximation with Saliency Prior), FDMDEA-STTM [
13] (Facet Derivative-Based Multidirectional Edge Awareness and Spatial–Temporal Tensor Model), and STTM-SFR [
14] (Spatial–Temporal Tensor Modeling with Saliency Filter Regularization)—have demonstrated strong performance by leveraging holistic spatial–temporal priors, edge awareness, and saliency regularization for target–background separation in infrared sequences. These advances indicate that current IRSTD research is gradually evolving from local contrast enhancement toward more comprehensive contextual modeling and adaptive feature learning.
Although these methods have substantially improved feature representation and clutter suppression, they are developed under the full-image processing paradigm, where sufficient global contextual information is available during inference. However, this assumption does not always hold in practical high-resolution infrared applications, where sliding-window or patch-wise inference is frequently adopted because of GPU memory and computational constraints. Under such settings, the model can only access local regions during inference and therefore cannot obtain complete background statistical information from the entire scene. Consequently, contextual information loss caused by patch-wise inference has become an increasingly important practical issue that is insufficiently addressed by existing full-image-oriented detection frameworks.
To mitigate these issues, we propose SCUA-Net, a densely nested encoder–decoder framework equipped with Global-Context Calibration Coordinate Attention (GCC-CA) for contextual calibration under sliding-window inference. It strengthens multi-scale feature fusion for weak targets by employing a U-Net++-style [
15] densely nested architecture as its backbone. We introduce the GCC-CA module to inject local window statistics into the coordinate attention [
16] mechanism, thereby enhancing discriminative power in cluttered scenes. During training, Online Hard Example Mining (OHEM) [
17] and Dice Loss [
18] are jointly employed to strengthen hard-sample learning. During inference, a sliding-window strategy combined with Gaussian-weighted fusion is adopted to alleviate stitching artifacts near window boundaries. These strategies improve the recognition efficiency of ISTD.
2. Materials and Methods
The difficulty of ISTD in complex backgrounds arises not only from the weak radiation, low texture, and extremely small size of the target itself, but also from the local inference protocol commonly used in practical deployment. In particular, when processing high-resolution panoramic infrared images, sliding-window inference can alleviate memory pressure, but it also truncates the global background statistics and deprives the model of the overall contextual reference within each local window, which in turn leads to more pronounced false detections in regions such as bright cloud edges and sea-surface ripples. To address this issue, this paper proposes SCUA-Net, which adopts a densely nested encoder–decoder structure as its backbone to preserve weak-target details while enhancing multi-scale feature interaction. Meanwhile, a GCC-CA module is introduced to inject global contextual statistics within local windows into the coordinate attention mechanism, thereby improving discriminative stability under complex backgrounds.
2.1. Overall Dense Nested Architecture
As shown in
Figure 1, SCUA-Net adopts a U-Net++-style [
15] densely nested encoder–decoder topology as the overall framework. The network consists of five levels. Multi-scale semantic information is obtained through progressive downsampling. Meanwhile, cross-level skip connections are introduced between the encoder and decoder. In addition, dense nested feature aggregation is performed among nodes at the same scale, so as to enable repeated interaction between shallow spatial details and deep semantic features. Compared with the traditional U-Net, which relies on a single skip connection for feature transfer, the dense nested structure allows a node at the same scale to receive multiple feature inputs from adjacent levels, which helps mitigate the gradual attenuation of infrared small targets in deep representations.
The node feature is denoted as
, where
indicates the
-th downsampling stage and
indicates the
-th nested level. The feature of this node is determined by the feature from the previous node at the same level, the upsampled feature from the next encoder stage, and the progressively aggregated features generated at the same level. This process can be formulated as follows:
where
denotes the nonlinear convolutional transformation block,
denotes channel-wise concatenation, and
and
denote downsampling and upsampling operations, respectively. In this way, the network can repeatedly fuse local edges, weak bright spots, and contextual structural information across multiple scales, thereby preserving shallow high-resolution features as fully as possible in the subsequent decoding process. Compared with structures that rely only on a single skip connection, this dense nested form is more suitable for ISTD tasks, in which the target occupies very few pixels but requires highly accurate localization.
In practice, we apply a double convolution block at each node for feature extraction and insert the GCC-CA module afterward for calibration, which deepens the network and allows recalibration at every scale, thereby curbing the propagation of background clutter through the dense connections. Overall, the proposed architecture balances detail preservation, semantic aggregation, and background suppression, making it a suitable backbone for small-target segmentation in complex infrared scenes.
2.2. GCC-CA: Global-Context Calibration Coordinate Attention
Although sliding-window inference enables real-time processing of high-resolution images, the resulting loss of global context is a primary source of elevated false alarms. When a window falls entirely within a bright clutter region, conventional attention mechanisms may misclassify strong background responses as targets due to the absence of global statistical references. To address this problem, this paper proposes the GCC-CA module, whose micro-level mechanism is shown in
Figure 2.
As illustrated in
Figure 2, the GCC-CA module consists of three parallel branches: a vertical pooling branch, a horizontal pooling branch, and a global-context calibration (GCC) branch. The first two branches, which are inherited from Coordinate Attention (CA) [
16], are used to capture the precise spatial position of the target. The global-context branch extracts channel-wise statistical information of the current local window through global average pooling, providing the necessary background reference for local inference.
Given an input feature map
, one-dimensional average pooling is first performed along the horizontal and vertical directions, yielding the vertical coordinate feature
and the horizontal coordinate feature
. Meanwhile, the global-context branch applies global average pooling [
19] to the input feature to obtain the channel-wise global descriptor
, as follows:
To effectively inject global context,
is first permuted into
and concatenated with
along the spatial dimension to obtain the joint coordinate feature. Then, the broadcasted global-context vector
is injected into the joint coordinate feature by element-wise additive fusion to compensate for environmental bias. This feature aggregation and nonlinear transformation process can be formulated as follows:
where
denotes concatenation along the spatial dimension,
is the intermediate feature map containing multi-directional and global context information,
denotes a
convolution operation with reduction ratio
followed by batch normalization [
20], and
denotes the HardSwish activation function [
21].
The intermediate feature f is then split along the spatial dimension into two separate tensors,
and
. These two tensors are independently restored to the original channel dimension
through separate
convolutions, and the final vertical and horizontal attention maps are generated by the Sigmoid function
, as follows:
Finally, the output of GCC-CA is obtained by element-wise multiplication of the input feature X with the two directional attention maps.
Unlike conventional attention mechanisms that rely solely on multiplicative reweighting, GCC-CA introduces an explicit contextual compensation by additively injecting global statistics before computing attention weights. This enables robust suppression of complex clutter, such as bright cloud edges and sea-surface ripples, without unduly weakening the already faint target signals. The experimental section further verifies the significant contribution of this module to false-alarm reduction.
2.3. Training Objective and Optimization Strategy
The ISTD training faces severe class imbalance, with target pixels vastly outnumbering background pixels. To address this issue, we adopt a joint loss combining OHEM-based BCE [
17] and Dice Loss [
18], to simultaneously take into account the ability to mine hard examples in complex backgrounds and to reconstruct the target area.
2.3.1. OHEM with Dice Loss
The joint loss is defined as follows:
The coefficient controls the balance between structural target preservation (Dice Loss) and hard clutter suppression (OHEM-BCE Loss). A smaller weakens hard-example mining, increasing false alarms; conversely, a larger overly dominates the optimization with background gradients, suppressing faint target responses. In our framework, because the OHEM strategy dynamically filters out 95% of easy background pixels, the extreme class imbalance is alleviated at the sample level. This ensures the numerical scales of both loss components are naturally aligned. Therefore, we set to provide a balanced optimization objective without introducing artificial gradient skewing.
The mathematical definitions of the loss terms are as follows:
Here,
and
denote the predicted probability and ground-truth label of the i-th pixel in the full segmentation map, respectively.
denotes the set of positive target pixels, and
denotes the set of hard negative pixels selected during training. The Dice loss measures the overlap between the predicted segmentation and the ground truth [
22], which helps maintain stable optimization under severe class imbalance. The OHEM-based BCE term is computed on
and
, so that the loss is dominated neither by the abundant easy background pixels nor by trivial negatives. In this paper, only the top 5% hardest background pixels are retained for the BCE term, while the remaining easy background pixels are ignored. In this way, the network focuses more on ambiguous background regions that are more likely to cause false alarms.
Compared with using BCE or Dice alone, this joint strategy is more conducive to suppressing random responses in complex backgrounds and improving the response stability of low-contrast targets. It should be noted that OHEM is not intended to replace all background supervision; rather, it emphasizes difficult examples that are closer to the decision boundary, thereby improving the model’s adaptability to complex scenes.
2.3.2. Weight Decay Regularization
Introducing OHEM significantly weakens the gradients of a large number of easy background samples. Consequently, the network weights responsible for background representations may suffer from insufficient updates or response drift. To suppress this phenomenon, a weight decay regularization term is introduced into the optimizer to provide a stability constraint for parameter updates, thereby reducing the random fluctuations caused by sparse background samples during training. This setting is particularly important for datasets such as IRSTD-1k, where the background is more complex and the interference is stronger.
The OHEM focuses on learning hard negative examples, Dice Loss preserves target regions, and weight decay ensures training stability. The combination of these three strategies enforces the model to focus more on the discriminative regions that truly affect performance in complex backgrounds, rather than being dominated by a large number of easy background pixels. This strategy is consistent with the contextual calibration design of GCC-CA; the former reduces background interference at the optimization level, while the latter suppresses false responses at the feature level.
2.4. Sliding-Window Inference with Gaussian Weighted Fusion
Considering the high-resolution panoramic images commonly encountered in practical infrared warning scenarios, sliding-window inference is adopted during testing to satisfy memory and speed constraints. Unlike the training stage, which directly processes fixed-size cropped images, the inference stage requires block-wise scanning of the entire image, which introduces a certain truncation effect at the window boundaries. To alleviate this issue, a Gaussian weighted fusion strategy is used to reconstruct the prediction results of adjacent windows.
The final pixel-wise output can be expressed as follows:
where the predicted probability of the k-th window is denoted as
, and the corresponding Gaussian weight is denoted as
.
is a stabilizing term introduced to avoid division by zero. This strategy is complementary to the proposed GCC-CA. GCC-CA focuses on compensating for the lack of local context using statistics within the window, whereas Gaussian fusion reduces discontinuities caused by block-wise stitching from the output level. Therefore, they constitute a complete inference scheme suitable for high-resolution infrared scenes.
Figure 3 illustrates the overall difference between the training and inference pipelines.
The SCUA-Net combines multi-scale detail preservation through dense nested connections, contextual calibration via GCC-CA, effective hard-sample learning with the joint loss, and continuous high-resolution output through Gaussian-weighted fusion. Through the synergy of these modules, SCUA-Net achieves strong robustness and engineering adaptability in complex backgrounds.
3. Results
3.1. Datasets and Evaluation Metrics
3.1.1. Datasets
The experiments were conducted on the NUDT-SIRST [
10] and IRSTD-1k [
23] datasets. NUDT-SIRST contains relatively rich mixed backgrounds composed of synthetic and real scenes, with extremely small targets and diverse shapes, making it suitable for evaluating the localization and reconstruction capability of a model under complex backgrounds. IRSTD-1k consists of a large number of highly challenging scenes such as bright cloud layers and sea-surface ripples, where targets are often obscured by local high-frequency clutter, and is therefore more suitable for assessing background suppression ability and robustness in highly complex scenes.
3.1.2. Evaluation Metrics
Probability of Detection (Pd), False Alarm Rate (Fa), Intersection over Union (IoU), and F-measure (
) are adopted as evaluation metrics. The definitions are as follows:
where
denotes the total number of ground-truth targets,
denotes the number of correctly detected targets,
denotes the number of false-detected pixels, and
denotes the total number of pixels in the image. TP, FP, and FN denote true positives, false positives, and false negatives, respectively.
Furthermore, as ISTD is formulated as a pixel-wise semantic segmentation task in this framework, we adopt the pixel-level F-measure (
) to comprehensively assess the harmonic mean of precision and recall. At the pixel level, the F-measure is mathematically equivalent to the Dice coefficient and can be equivalently expressed using IoU.
In the tables, the Fa values are presented in units of for better readability under extremely low false-alarm settings.
3.2. Implementation Details
To ensure comparability, all models were trained from scratch under the same software and hardware environment. The experiments were carried out on a cloud server provided by AutoDL (SeetaCloud Technology Co., Ltd., Nanjing, China), equipped with a single NVIDIA RTX 4090 GPU (NVIDIA Corporation, Santa Clara, CA, USA) with 24 GB VRAM, running on Ubuntu 20.04 (Canonical Ltd., London, UK), Python 3.8 (Python Software Foundation, Wilmington, DE, USA), and PyTorch 2.0.1 (Meta AI, Menlo Park, CA, USA) with CUDA 11.8. Following common practices in ISTD, a target-centric cropping strategy was adopted for all compared models during training. Specifically, training samples were generated around the target region with a probability of 60–70%, and the crop size was fixed to . This standard strategy helps alleviate the extreme positive–negative imbalance typical in ISTD, improves the learning efficiency on sparse targets, and ensures identical data sampling conditions for a fair comparison.
The proposed SCUA-Net was optimized using the AdamW optimizer [
24] with a batch size of 16. The initial learning rate (
) was explicitly set to 0.05, and the training was performed for 160 epochs using a cosine annealing schedule with a minimum learning rate of
. Additionally, the reduction ratio (
) in the GCC-CA module was set to 16 to balance the computational overhead and channel-wise feature interaction. The loss function adopted a joint optimization paradigm combining OHEM and Dice Loss, where the truncation ratio of OHEM was set to 5%, meaning that only the top 5% hardest background samples with the largest prediction errors were retained for gradient updates, while the remaining easy background samples were suppressed. To further alleviate parameter drift caused by sparse background gradients after OHEM, a stronger weight decay regularization of
was used on IRSTD-1k, whereas a standard weight decay of
was used on NUDT-SIRST.
During testing, to simulate the processing mode of real infrared warning systems for high-resolution panoramic images, a sliding-window inference strategy with a stride of 128 and a window size of was adopted. The outputs of adjacent overlapping windows were seamlessly reconstructed through a 2D Gaussian-weighted fusion matrix, where the standard deviation () of the Gaussian kernel was empirically set to 40 to effectively eliminate contextual truncation artifacts at the window boundaries. This reduces the stitching artifacts introduced by contextual truncation at window boundaries and makes the final output more spatially continuous and more stable in localization.
3.3. Comparison with State-of-the-Art Methods
SCUA-Net was compared with four representative methods, namely ACM [
8], ALCNet [
9], ISTDU-Net [
25], and DNA-Net [
10]. These methods respectively represent typical paradigms of contextual modulation, local contrast enhancement, bidirectional feature fusion, and densely nested architecture in ISTD.
Table 1 summarizes their quantitative results under the standard binary segmentation threshold of 0.5 on NUDT-SIRST and IRSTD-1k. While this fixed threshold provides a direct pixel-level evaluation, a comprehensive performance comparison across dynamic thresholds is further presented via ROC and PR curves.
3.3.1. Quantitative Results
On NUDT-SIRST, SCUA-Net outperforms other methods across Pd, Fa, and IoU. In particular, it achieves a substantially lower false alarm rate of , highlighting the strong clutter suppression capability enabled by the densely nested architecture and GCC-CA module. Moreover, the high IoU of 0.9570 indicates superior target contour reconstruction and pixel-level consistency, effectively preserving weak target details while reducing background interference.
On the more challenging IRSTD-1k dataset, false alarm rates of all methods increase markedly due to the presence of strong clutter such as bright cloud layers, sea-surface ripples, and local high-frequency structures. Under such conditions, methods that emphasize detection sensitivity tend to generate more positive responses, which can improve Pd but often leads to a substantial increase in false alarms.
In contrast, SCUA-Net is specifically designed to suppress clutter-induced pseudo-responses through the proposed GCC-CA module. By introducing contextual calibration into the attention generation process, the network can more effectively distinguish true targets from strong background interference. Consequently, some extremely weak targets located in highly ambiguous regions may be suppressed together with clutter responses, leading to a slightly lower Pd compared with several competing methods.
Nevertheless, this conservative decision strategy substantially reduces false positives, resulting in the lowest Fa and the highest IoU on IRSTD-1k. Since IoU jointly reflects the balance among true positives, false positives, and false negatives, the significant reduction in false alarms outweighs the minor decrease in detected targets. These results suggest that SCUA-Net favors detection reliability and background robustness, which are particularly important in practical infrared early-warning systems where excessive false alarms can severely affect operational effectiveness.
Figure 4 further presents the precision–recall (PR) curves and receiver operating characteristic (ROC) curves of all methods. SCUA-Net outperforms the comparison methods over most threshold ranges and achieves the largest AUC, indicating stronger robustness under dynamic thresholds.
3.3.2. Qualitative Results
To more intuitively demonstrate the detection differences among methods in complex scenes, qualitative visual comparisons are further provided.
Figure 5 shows the qualitative results of different methods on IRSTD-1k and NUDT-SIRST. The first two rows correspond to complex scenes from IRSTD-1k, including strong clutter such as cloud edges and sea-surface ripples, while the last two rows correspond to typical scenes from NUDT-SIRST. From left to right, the figure shows (a) the original infrared image with an enlarged target region; (b) the ground truth (GT); (c) ACM; (d) ALCNet; (e) ISTDU-Net; (f) DNA-Net; and (g) the proposed SCUA-Net. The red box indicates the target region. Whereas ACM and ALCNet often generate extra false alarms in bright backgrounds or suffer from target misses and distorted boundaries, SCUA-Net yields cleaner maps with better shape recovery and effectively suppresses false positives caused by strong clutter.
3.4. Complexity and Efficiency Analysis
In addition to detection accuracy, the parameter count, computational cost, and inference speed of the models are also important indicators of practical value.
Table 2 summarizes the number of parameters, floating-point operations, and inference FPS of each method under the same testing setting. SCUA-Net has 9.22 M parameters, 34.87 G FLOPs, and an inference speed of 161.6 FPS. Although its parameter count and computational cost are higher than those of lightweight methods, it still maintains a real-time inference speed of 161.6 FPS, which meets the real-time processing requirements of practical infrared early-warning systems.
The SCUA-Net prioritizes detection robustness and false-alarm suppression over pursuing an extreme lightweight design. While lightweight models often struggle to suppress pseudo-responses in highly cluttered backgrounds, the proposed method achieves significantly lower false alarm rates through its densely nested architecture and contextual calibration. Consequently, this leads to an increase in parameter count and computational overhead. Nevertheless, this trade-off is acceptable for practical systems. With an inference speed of 161.6 FPS on the RTX 4090 platform, SCUA-Net successfully meets real-time processing constraints while delivering superior anti-noise capability and detection reliability.
4. Discussion
4.1. Ablation Study
To verify the effectiveness of the core modules in SCUA-Net, ablation experiments were conducted on both NUDT-SIRST and IRSTD-1k. The ablation settings include using only the basic U-Net++ backbone, adding the GCC module, adding the CA module, and the complete model with both GCC and CA. The corresponding results are listed in
Table 3.
On NUDT-SIRST, introducing either GCC or CA can improve the model performance to different extents, where GCC more effectively reduces the false alarm rate, while CA is more beneficial for preserving target contours and boundary information. When these two modules are used together, the model achieves the best overall performance, indicating that global-context calibration and coordinate localization are complementary.
On IRSTD-1k, the baseline model exhibits a clearly higher Fa, indicating that the densely nested structure alone is insufficient to suppress false alarms in complex bright backgrounds. After adding GCC, the Fa decreases significantly. After adding CA, the model’s capability for position modeling is enhanced. The complete model achieves the best Fa and IoU, indicating that the synergistic design of GCC-CA is particularly important for background suppression in complex scenes.
SCUA-Net demonstrates stronger target preservation and a lower false alarm rate on NUDT-SIRST, while showing stronger complex-background suppression and more stable performance on IRSTD-1k. Its advantages mainly stem from three aspects: the preservation of weak target details by the densely nested structure, the calibration of local-window context by GCC-CA, and the focused learning of hard negative samples by the joint OHEM + Dice optimization. The experimental results indicate that the proposed method achieves a relatively balanced trade-off among accuracy, robustness, and real-time performance.
4.2. Noise Robustness Analysis
In practical infrared sensing systems, imaging quality is frequently degraded by thermal noise and environmental perturbations. To further evaluate the generalization capability of the proposed method under degraded imaging conditions, additive zero-mean Gaussian noise with varying standard deviations (
) was injected into the test images. The pre-trained SCUA-Net was directly evaluated without any noise-specific retraining or fine-tuning. The quantitative results are presented in
Table 4.
As shown in
Table 4, SCUA-Net maintains stable detection performance under mild Gaussian noise (
), with only marginal performance degradation observed. When the noise level further increases to
, the detection probability (Pd) decreases more noticeably because the contrast between extremely small infrared targets and the cluttered background is substantially weakened, causing faint targets to be physically submerged by noise.
However, it is noteworthy that the false alarm rate (Fa) does not exhibit a severe surge at , but rather remains effectively bounded at a low level (). This robustness can be attributed to the proposed GCC-CA module, which generates attention weights based on aggregated contextual statistics rather than isolated local pixel responses, thereby alleviating the perturbation of random noise spikes. Furthermore, the joint OHEM-based optimization enforces a strict decision boundary that conservatively suppresses highly ambiguous noisy inputs rather than generating massive false responses. Although the overall performance gradually decreases under severe noise, the proposed method still preserves satisfactory target detection capability and high operational reliability without any additional denoising preprocessing, demonstrating reasonable robustness in practical infrared imaging scenarios.
4.3. Interpretability and Feature Visualization
To provide a more intuitive understanding of the internal representation learned by SCUA-Net and to demystify its decision-making process, we further visualize the deep semantic feature activations immediately before the final segmentation head. Specifically, a forward hook was employed to extract the high-dimensional feature tensor, which was subsequently projected into a two-dimensional activation map through channel-wise average pooling. The normalized activation map was then superimposed on the corresponding infrared image using a standard pseudo-color rendering pipeline to illustrate the spatial distribution of discriminative features.
Figure 6 presents a representative example of the learned feature responses in a complex cluttered scene. In conventional convolutional networks, sharp cloud edges typically induce massive diffuse activations, leading to extensive false-positive regions. In contrast, SCUA-Net produces highly concentrated activations precisely around the true infrared target (represented by the warm/red core) while effectively suppressing the vast background clutter into a uniform, low-activation state (represented by the cold/dark blue regions).
Such interpretable behavior is consistent with the design objective of the proposed Global-Context Calibration Coordinate Attention (GCC-CA) module. By systematically integrating global contextual statistical bias to calibrate local responses, the network autonomously penalizes the energy coefficients of non-target high-brightness fluctuations. Although this visualization is qualitative, it provides intuitive evidence supporting the effectiveness of the proposed clutter-clearing mechanism and perfectly complements the quantitative experimental results presented in the previous sections.
5. Conclusions
This paper proposed SCUA-Net to address target submergence, a high false alarm rate, and the loss of local context issues in ISTD under complex cluttered backgrounds. The method adopts a U-Net++-style densely nested encoder–decoder architecture to enhance multi-scale interaction between shallow spatial details and deep semantic features. A GCC-CA module is further introduced to inject contextual statistics within local windows into the coordinate attention mechanism, thereby alleviating background false detections under local inference conditions. Meanwhile, a joint optimization strategy combining OHEM-BCE and Dice Loss is employed, and sliding-window inference with Gaussian weighted fusion is used during testing to improve output continuity and localization stability for high-resolution infrared images.
Experimental results show that SCUA-Net achieves superior performance on both the NUDT-SIRST and IRSTD-1k datasets. On NUDT-SIRST, the model obtains a detection probability of 99.15%, a false alarm rate of 0.558 × 10−6, and an IoU of 0.9570, demonstrating that the proposed network can preserve weak target details while effectively suppressing complex background interference. On IRSTD-1k, the false alarm rate is further reduced to 52.210 × 10−6, with an IoU of 0.628, indicating that the model still maintains strong background suppression and structural restoration capability in more demanding real-world complex scenes. Meanwhile, the inference speed on the RTX 4090 platform reaches 161.6 FPS, showing that the proposed method also satisfies real-time requirements to a certain extent. Notably, SCUA-Net’s primary strength lies in substantially reducing false alarms while preserving stable performance—a priority well suited to practical infrared early-warning systems. SCUA-Net offers an effective approach to contextual calibration for ISTD in challenging environments.