1. Introduction
Infrared small target detection (ISTD) has served as a fundamental and critical technology over the past several decades, playing an essential role in various applications such as civilian patrol missions aboard unmanned aerial vehicles (UAVs) [
1,
2] or shipboard systems [
3], as well as industrial inspection tasks like factory defect scanning [
4]. In many of these real-world scenarios, detection systems are deployed on resource-constrained platforms where size, weight, and power limitations impose strict constraints on computational complexity and memory footprint. These platforms require lightweight yet effective algorithms to enable real-time processing under limited onboard resources.
Although traditional single-frame infrared small target (SIRST) detection methods have achieved notable progress, they suffer from an inherent limitation: the inability to leverage temporal motion cues, resulting in insufficient robustness under low signal-to-noise ratio (SNR) scenarios. To address this bottleneck, multi-frame infrared small target detection (MIRSTD) has emerged, which significantly enhances detection performance by integrating temporal contextual information.
Existing MIRST detection approaches can be broadly categorized into two technical paradigms. The first is model-driven methods, which rely on mathematical priors for target–background separation. Early filtering-based approaches [
5,
6] and subsequent optimization-based methods leveraging low-rank and sparse decomposition [
7,
8,
9] have demonstrated effectiveness in specific scenarios. More recent tensor-based extensions incorporate temporal information through spatio-temporal modeling [
10,
11,
12]. Although theoretically principled, these methods often require meticulous manual tuning and struggle to adapt to complex, nonlinear clutter environments.
The second category comprises data-driven methods, which employ deep learning to automatically learn spatio-temporal features. Within single-frame detection, substantial efforts have focused on enhancing spatial feature discrimination through multi-scale fusion [
1,
13], dense connections [
14,
15], and feature grouping mechanisms [
16]. Another important direction incorporates mathematical priors into network architectures to improve interpretability and robustness [
17,
18,
19,
20], while deep unfolding networks [
21,
22,
23] further bridge model-driven and data-driven paradigms. For multi-frame detection, temporal information is leveraged through various strategies, including unsupervised sequence registration [
24], motion modeling [
25], deformable alignment [
26], nonlinear spatio-temporal feature enhancement [
27], and temporal anomaly reformulation [
28]. Meanwhile, introducing powerful model frameworks from other domains, such as Mamba [
29,
30,
31], has also become a common direction in the current field. Despite their advancements, data-driven methods face the following challenges:
Infrared small targets typically occupy only a few pixels, lack distinct shape or texture features, and are easily hidden in complex backgrounds. Without sufficient use of temporal information, effective target detection becomes very difficult. Nevertheless, excessively long sequences greatly increase computational cost and make lightweight design difficult to achieve. In addition, abundant false alarm sources and background clutter often make algorithm performance unstable. Therefore, infrared small target detection algorithms require extremely high scene adaptability.
To tackle these challenges, this paper proposes a novel sparse-frames-based spatio-temporal feedback semantics network, termed FeedbackSTS-Det. The core of our approach is a spatio-temporal semantic feedback strategy that establishes a closed-loop semantic association mechanism. Specifically, it integrates a forward spatio-temporal semantic refinement module (FSTSRM) in the encoder and a backward spatio-temporal semantic refinement module (BSTSRM) in the decoder in a cooperative manner, both built upon a balanced 3D Res-UNet backbone. Additionally, we embed a sparse semantic module (SSM) within both refinement modules, which performs structured sparse temporal modeling to capture long-range dependencies with low computational cost. These designs facilitate robust implicit inter-frame registration and continuous spatio-temporal semantic refinement, ensuring effective false alarm suppression and consistent performance. Furthermore, extensive experiments on widely adopted multi-frame infrared small target datasets confirm the effectiveness of our proposed method under the evaluated scene configurations.
The main contributions of this work are summarized as follows:
We propose a closed-loop semantic feedback strategy for infrared small target detection, comprising paired forward and backward refinement modules that operate across the encoder and decoder. This design enhances information exchange between consecutive frames, effectively improving detection accuracy and reducing false alarms.
We introduce an embedded sparse semantic module (SSM), which operates by strategically grouping frames by interval, propagating semantics within each group, and reassembling the sequence to efficiently capture long-range temporal dependencies with low computational overhead.
Our model exhibits strong detection capability and false alarm suppression across all experiments on many widely adopted multi-frame infrared small target datasets, demonstrating its robustness on the evaluated benchmarks.
The remainder of this paper is organized as follows:
Section 2 provides a comprehensive review and critical analysis of related work.
Section 3 describes the proposed network architecture.
Section 4 presents experimental results and analysis. Finally, the discussions and conclusions are described in
Section 5 and
Section 6.
2. Related Work
In this section, we provide a concise review of the main methods in the field of IRST, with a particular emphasis on research related to MIRST detection. Existing MIRST detection methods can be broadly categorized into model-driven methods and data-driven methods. The former primarily relies on filtering or handcrafted optimization models for feature extraction, while the latter utilizes deep learning methods to automatically learn feature representations from large-scale data.
2.1. Model-Driven Schemes for IRST
Model-driven infrared small target detection methods can be divided into two categories: filtering methods based on local priors and optimization methods based on non-local priors.
Filtering methods operate under the background consistency assumption, estimating the image background and enhancing targets via background subtraction. Classical methods like Top-Hat [
5] and two-dimensional least mean square (TDLMS) [
6] perform well in uniform backgrounds but struggle in complex cluttered environments. Subsequent improvements include methods leveraging the human visual system (HVS) to exploit target saliency characteristics [
32,
33,
34].
In contrast, optimization methods exploit the non-local correlation of backgrounds and target sparsity, achieving target–background separation through model formulation. Assuming low-rank background subspaces, Gao et al. [
7] model ISTD as a low-rank and sparse decomposition problem. This inspired numerous subspace-based variants [
35,
36,
37]. Further developments include designing the reweighted infrared patch tensor [
8], formulating the non-convex rank approximation minimization [
9], proposing the partial sum of tensor nuclear norm [
38], and incorporating local contrast energy or hyper total variation to improve robustness [
39,
40].
To incorporate temporal information, sequence-based tensor methods have been developed, extending prior spatial models into the spatio-temporal domain. Representative approaches include extending multi-subspace learning to the tensor domain [
10], constructing spatio-temporal tensors with overlapping patches [
41], and extracting non-overlapping patches across frames via sliding windows [
11]. Further improvements involve designing specialized regularization methods combined with non-convex tensor rank approximation [
42], imposing constraints on Tucker decomposition factor matrices [
12], and incorporating total variation on sparse representation matrices [
43]. Advanced methods also leverage sparse regularization to enhance target–background distinction [
44] or extend tensor decomposition to four-dimensional representations [
45].
In summary, model-driven methods rely heavily on handcrafted priors that often fail to generalize across diverse scenes and require meticulous parameter tuning for each new scenario. This limitation has motivated the shift toward data-driven paradigms that learn spatio-temporal features directly from large-scale data.
2.2. Data-Driven Schemes for IRST
Model-driven methods often rely on manual parameter tuning and idealized mathematical models, whereas data-driven methods employ deep learning to automatically learn features from large-scale data, enabling end-to-end infrared small target detection.
Within this data-driven paradigm, single-frame detection focuses on extracting more discriminative spatial features from a single image. Specifically, Dai et al. [
1] and Zhang et al. [
13] enhance feature representation for small targets by designing multi-scale asymmetric fusion modules that synergize global context attention with local attention mechanisms targeting point-like objects. Similarly, Li et al. [
14] and Wu et al. [
15] strengthen internal connections among network modules and the flow of feature information through repeated stacking of model structures. Hou et al. [
16] introduce a feature map grouping mechanism and assign higher weights to groups containing small targets to focus on critical information.
Beyond these purely data-driven designs, another important direction is to incorporate mathematical model priors into neural network architectures. For instance, Sun et al. [
18] and Zhang et al. [
46] embed Gaussian operator modules into networks based on the assumption that the grayscale distribution of infrared targets approximates a Gaussian distribution. Wu et al. [
19] design learnable local saliency kernels to embed traditional filtering principles into networks, while Hu et al. [
20] develop a specific convolution block that simulates central difference to extract image gradient features more robustly. In addition, many researchers have introduced deep unfolding networks (DUNs) based on robust principal component analysis [
47] into ISTD [
21,
22,
48], bridging model-driven and data-driven methodologies. These approaches achieve strong detection performance while maintaining a high degree of interpretability.
In contrast to single-frame approaches, MIRSTD methods place greater emphasis on mining and utilizing temporal information across consecutive frames. Hou et al. [
24] propose a hierarchical temporal consistency loss function within an unsupervised end-to-end framework to resolve registration inconsistencies of infrared image sequences. Li et al. [
25] extract spatial saliency features via a detection head, and then input the features of five consecutive frames into a self-designed direction-coded temporal U-shape module (DTUM) for motion modeling. The recurrent feature refinement framework (RFR) [
26] employs deformable convolutions and a pyramid structure to enhance inter-frame registration and positional information extraction for long-sequence detection. Wu et al. [
27] further employ nonlinear networks to enhance correlations between spatial-temporal features and performs detection in an unsupervised manner. Furthermore, Li et al. [
28] reformulate infrared small target detection as a one-dimensional signal anomaly detection problem, where global temporal saliency and correlation characteristics distinguish targets from interference signals.
In addition to conventional deep learning paradigms, incorporating powerful frameworks from other domains has also attracted increasing attention. A state-space model with linear complexity, named Mamba [
29], has emerged, capable of achieving performance comparable to or even better than the Transformer model [
49] at a lower cost in long-sequence modeling tasks. It is thus natural to apply this high-efficiency capability to moving infrared small target detection, which is crucial for deployment. Some researchers have designed multi-stage Mamba architectures [
30,
31] to progressively construct complementary local and global features. Other researchers have integrated classic feature extraction methods commonly used in infrared target detection into the Mamba framework, for example, by developing a spatiotemporal attention mechanism via Fourier transform [
50], or by capturing the intensity and directional information of pixel differences between a scanning position and its central neighborhood [
51]. Further studies have, within the Mamba framework, consolidated dual-branch structures for global and local spatiotemporal feature extraction while reducing computational redundancy [
52,
53].
Overall, existing deep-learning-based methods for moving infrared small target detection all attempt to leverage learning from large-scale datasets to fully exploit the spatio-temporal feature information of infrared small targets. However, they generally rely too heavily on dense inter-frame feature extraction and predominantly focus on utilizing temporally preceding feature information to compensate for the detection of subsequent frames, while seldom using subsequent detection results to retroactively refine earlier ones. The method we propose in
Section 3 will address the aforementioned issues.
3. Materials and Methods
3.1. Overall Framework
As illustrated in
Figure 1, we present a sparse-frames-based spatio-temporal feedback semantic network (FeedbackSTS-Det), which addresses temporal modeling from a sparse sampling perspective. Built upon a balanced 3D Res-UNet backbone [
54,
55], our network processes sliding windows by partitioning the continuous temporal image data into shorter sequences (denoted as
) of length
D, with each
sequentially extracted as input. This approach maintains consistency between the training and inference processes, ensuring the stability of model performance during actual deployment.
The encoder phase incorporates five consecutive forward spatio-temporal semantic refinement modules (FSTSRM), while the decoder phase employs four successive backward spatio-temporal semantic refinement modules (BSTSRM). Both modules critically integrate our novel sparse semantic module (SSM), which operates by strategically grouping frames at intervals, propagating semantics within each group using the basic feedback module (BFM), and then reassembling the sequence. Collectively, FSTSRM and BSTSRM establish a spatio-temporal semantic feedback strategy.
The spatio-temporal semantic feedback strategy will be detailed in
Section 3.2, whereas the SSM will be elaborated in
Section 3.3. To alleviate the excessive growth of floating-point operations during iterative feature propagation, we deliberately set the base channel number of the overall framework to 8, ensuring that the deepest layer maintains a maximum channel count of 128. To achieve satisfactory segmentation performance, we adopt the Soft-IoU loss function [
14,
25] for training.
3.2. Spatio-Temporal Semantic Feedback Strategy
The spatio-temporal semantic feedback strategy establishes a closed-loop semantic association mechanism, which comprises the FSTSRM and BSTSRM described in detail below.
3.2.1. Forward Spatio-Temporal Semantic Refinement Module
The forward spatio-temporal semantic refinement module (FSTSRM) establishes the forward propagation path in our spatio-temporal feedback system, progressively building spatio-temporal semantic understanding across frames. Five consecutive FSTSRMs constitute the encoding layer of the overall framework.
Let
denote the input feature map of the encoding layer at layer
l. As illustrated in
Figure 1b, forward refinement can be expressed as a bidirectional information integration process:
where ⊕ denotes element-wise addition. Let
and
denote 3D convolutions with kernel sizes of 3 and 1, respectively. Specifically,
consists of two consecutive 3D convolutions with batch normalization to preserve local spatio-temporal structures, and its formulation is given in Equation (
2). Meanwhile, the forward temporal propagation path
employs a sparse semantic modeling strategy, which is defined in Equation (
3).
where the operator
represents the processing through the SSM, whose details are provided in
Figure 1d and
Section 3.3.
The design of FSTSRM enables complementary information integration. The context branch provides high-fidelity spatial cues, while the sparse propagation branch establishes long-range temporal associations.
3.2.2. Backward Spatio-Temporal Semantic Refinement Module
The backward spatio-temporal semantic refinement module (BSTSRM) implements retrospective refinement of FSTSRM by reversing temporal dependencies. Four consecutive BSTSRMs modules constitute the decoding layer of the overall framework.
Let
denote the input feature map of the
l-th decoding layer, where
and larger
l indicates deeper layers. As illustrated in
Figure 1a,c, the input of the BSTSRM at layer 5 is formed by concatenating the outputs of the two deepest FSTSRM along the channel dimension (Equation (
4)). For
, the input concatenates the output of the BSTSRM from the deeper layer with the output of the FSTSRM at the same level along the channel dimension (Equation (
5)).
where
denotes upsampling. Building upon this input, the backward refinement process is then expressed as:
where the backward feature refinement path
is further defined as:
where the depth-wise reversal operator
is the core operation of BSTSRM. Given an input tensor
,
is defined as:
3.2.3. Feedback Strategy
As illustrated in
Figure 1a, five consecutive FSTSRMs progressively extract spatio-temporal semantic features from low to high levels. By simultaneously preserving spatial context information and performing forward sparse propagation, they enable forward information flow, thereby constituting the feedforward pathway. Meanwhile, four consecutive BSTSRMs reverse the temporal dimension, allowing deep-layer spatio-temporal semantic information to propagate backward to shallower layers, thus forming the feedback pathway. Throughout the propagation process, continuous information exchange between the two pathways facilitates the overall spatio-temporal semantic feedback strategy. This feedback structure not only inherits the advantages of traditional networks by leveraging preceding frames to influence the detection results of subsequent frames, but also allows subsequent frames to correct errors in preceding ones, thereby enhancing system robustness, reducing false alarm rates, and improving detection accuracy.
Conventional sliding-window methods typically focus on using preceding frames to influence subsequent ones and rely on dense feature correction within each window, which lacks flexibility. In contrast, our spatio-temporal semantic feedback strategy promotes sufficient information exchange between temporally earlier and later features without incurring redundant computational growth.
3.3. Sparse Semantic Module
The sparse semantic module (SSM) is incorporated into the temporal feature extraction paths of both the FSTSRM and BSTSRM modules, with its specific structure illustrated in
Figure 1d. It is designed to achieve efficient long-range temporal modeling by strategically processing a subset of frames, thereby reducing computational overhead while enhancing feature propagation across distant frames. The SSM operates in three consecutive stages: sparse grouping, intra-group spatio-temporal semantic propagation, and temporal reassembly.
3.3.1. Sparse Grouping
Given a sampling interval
and an input feature sequence
of length
D, the sparse grouping partitions the index set
into
T disjoint subsequences:
Equivalently, the k-th group contains frames with indices , where . This constructed index table is also of great help for reorganizing the grouped input feature groups.
In our model framework, there are five encoder layers and four decoder layers. During the feature propagation between frames at the same network layer, the scale of the feature maps remains unchanged, and the number of feature propagation operations is also
. Therefore, the computational cost is consistent across these operations. Let
denote the computational cost of feature propagation between frames at the
i-th layer. Then, the overall computational cost of the network is given as follows:
When
, the model reduces to a sequential model without the sparse mechanism. The reduction in computational cost achieved by the sparse mechanism is given by Equation (
11). It can be observed that as the sparse interval
T increases, the degree of computational cost reduction becomes larger.
3.3.2. Intra-Group Spatio-Temporal Semantic Propagation
Although the sparse mechanism is an effective approach for reducing computational cost, simply decreasing the number of propagation steps inevitably undermines the effectiveness of feature propagation. Therefore, it is crucial to strengthen the propagation ability within each group. To address this, we propose the basic feedback module (BFBM), as illustrated in
Figure 2a. For each group, all frames except the first one undergo two procedures, which are feature extraction (illustrated in
Figure 2b) and feature alignment (illustrated in
Figure 2c). Both procedures are adapted from the pyramid deformable alignment (PDA) module [
26] and are deliberately decoupled in our design to reduce redundant computation.
Specifically, for a given feature group
obtained according to Equation (
9), the initial frame
serves only as a reference. Consequently, the first output
within the group is obtained by directly passing
through without any special processing, as formulated in Equation (
12). For the remaining outputs
, where
, they are generated by first extracting features from the current input frame, which serves as the neighbor input, and its adjacent counterpart, which serves as the reference input. This is followed by the procedure of feature alignment. The corresponding computational process is given by Equation (
13).
where the operators
and
denote the procedures of feature extraction and feature alignment, respectively, both with the same number of layers
L. As illustrated in
Figure 2b, during feature extraction, the input is processed by a downsample module at each layer.
Each downsample module consists of two consecutive 2D convolutions with ReLU activation, where the strides are set to 2 and 1, respectively. Omitting the ReLU for brevity, the two convolutions with different strides are denoted as
and
. The downsampling process is formally expressed in Equation (
14).
The feature maps of the neighbor at different scales and those of the reference are then jointly fed into the procedure of feature alignment, where the scale of feature maps decreases as the index increases.
As shown in
Figure 2c, during the procedure of feature alignment, the feature maps from the reference input and the neighbor input are progressively aligned from the bottommost feature map up to the top. The entire process consists of
L steps. The core operation involved is deformable convolutions [
56,
57], which more effectively capture variations in pose, local deformation, and scale of objects. Omitting ReLU and other activations, let
denote
n consecutive
convolutions with stride 1, and let
denote the deformable convolution operation.
In the first step, the primary operation is auxiliary refinement of the bottom-level feature maps to facilitate feature alignment in the upper layers. The corresponding formulas are shown in Equations (
15) and (
16).
In the following step
l, where
, an intermediate output
is generated after upsampling at the end of the step, and the model performs feature alignment by leveraging the upsampled output from the previous step. The corresponding formulas are given in Equations (
17) and (
18).
Finally, the last step generates the aligned feature output
, which is obtained as shown in Equations (
19) and (
20).
After processing all
frames in
, the group yields a set of refined output features:
3.3.3. Temporal Reassembly
In the final stage, the outputs from all
T groups are interleaved and sorted according to their original temporal indices to reconstruct a complete, coherent feature sequence of length
D:
where
is a simple concatenation and sorting operation that reconstructs the full feature sequence
, preserving the temporal order.
4. Results
In this section, we first describe the experimental setup, including evaluation metrics and implementation details. Then, we evaluate our method against other baseline and state-of-the-art approaches on both SIRST and MIRST tasks. Finally, we present ablation studies to validate the effectiveness of our design.
4.1. Datasets and Implementation
4.1.1. Datasets
To evaluate the performance of the proposed FeedbackSTS-Det, we employ two publicly available benchmark datasets. The NUDT-MIRSDT [
25] dataset comprises 120 sequences with 12,000 images, covering diverse infrared scenes such as clouds, oceans, and land surfaces. Following the original setup, each sequence is generated by applying local perturbations and synthetic noise to real infrared imagery. The IRSatVideo-LEO [
26] dataset contains 200 sequences with 91,022 images, constructed by combining real satellite imagery with simulated satellite motion trajectories. Both datasets incorporate synthetic augmentations, specifically perturbation injection in NUDT-MIRSDT and trajectory simulation in IRSatVideo-LEO, while providing high-quality pixel-level mask annotations. Due to the scarcity of publicly available real-world sequential data, the use of synthetic or semi-synthetic components is common in the multi-frame infrared small target detection community; nevertheless, these datasets are built upon real infrared imagery and complemented by dense pixel-level annotations of extremely high precision, making them representative of practical scenarios. Importantly, to ensure fair evaluation, we conduct all experiments strictly following the standard protocols without any dataset-specific customization. We further validate the robustness of our model under different sampling configurations and sequence lengths in the ablation studies (
Section 4.3).
4.1.2. Metrics
In this paper, we adopt a mainstream evaluation framework [
13,
14] for infrared small target detection models, incorporating pixel-level metrics (intersection over union (IoU), F-measure, false alarm rate (Fa)) and object-level metrics (detection rate (Pd), along with the receiver operating characteristic (ROC)).
4.1.3. Implementation Details
For training, we use Soft-IoU loss [
57] and the Adam optimizer with a MultiStepLR scheduler, starting at
and halving at epochs
. Training lasts 30 epochs from scratch, implemented in PyTorch 2.4.1 on six NVIDIA RTX 4090 GPUs. Additionally, both datasets then undergo the same augmentations, including random cropping, horizontal flipping, vertical flipping, and rotation, before being resized to
. The total batch size is set to 16.
In terms of data preprocessing, both datasets then undergo the same augmentations (horizontal/vertical/channel flips, transpositions) before resizing to . Moreover, to ensure a consistent evaluation protocol, we exclude the “Mix” folder from NUDT-MIRSDT, which contains simulated sequences, to focus evaluation on authentic infrared sequences from its “images” and “masks” folders.
Regarding the network architecture, we set the number of layers
L in both the feature extraction and feature alignment procedures of the BFBM to 2, as mentioned in
Section 3.3, which achieves a good balance between alignment accuracy and computational cost. Furthermore, the sampling step
T of the SSM is a key hyperparameter. While larger values of
T can further reduce computational cost, excessively reducing the number of propagation steps inevitably compromises the effectiveness of feature propagation, leading to degraded detection performance. Therefore,
T must balance computational efficiency with sufficient temporal feature propagation. Our subsequent experiments demonstrate that values of 2, 3, or 4 yield strong performance, effectively trading off between temporal coverage and processing efficiency.
4.2. SOTA Comparisons
We compare the proposed FeedbackSTS-Det against state-of-the-art methods in both single-frame and multi-frame infrared small target detection. For single-frame infrared small target detection, evaluated methods include three model-driven approaches: TopHat [
5], NRAM [
9], and PSTNN [
38]; and seven data-driven methods: ACM [
1], ALCNet [
58], DNANet [
14], RDIAN [
18], ISTDU-Net [
16], RPCANet [
21], and L2SKNet_FPN [
19]. For multi-frame infrared small target detection, comparisons include seven model-driven methods (MSLSTIPT [
10], NFTDGSTV [
12], RCTV [
43], IMNN-LWEC [
59], SRSTT [
44], ASTTV-NTLA [
42], 4DISDT [
45]) and five data-driven methods (DNANet_DTUM [
25], ALCNet_DTUM [
25], ResUNet_DTUM [
25], ACM_RFR [
26], ResUNet_RFR [
26]).
For data-driven MIRST methods, all metrics follow a uniform input sequence length of 10. Additionally, our networks with different sampling intervals
t are denoted as FeedbackSTS-Det-T
t. When
, the model bypasses interval sampling in SSM. All models are retrained from scratch on both the IRSatVideo-LEO [
26] and NUDT-MIRSDT [
25] datasets under identical settings for fair comparison.
4.2.1. Quantitative Results
Table 1 presents a comprehensive comparison of state-of-the-art methods on IRSatVideo-LEO [
26] and NUDT-MIRSDT [
25] using multiple evaluation metrics. Our proposed FeedbackSTS-Det variants consistently demonstrate superior performance across both datasets, with each sampling interval configuration exhibiting distinct advantages. The FeedbackSTS-Det-T2 variant achieves the most balanced and outstanding performance overall. On the NUDT-MIRSDT [
25] dataset, it obtains the best results in four key metrics,
,
,
, and
, while maintaining the second-lowest false alarm rate. Similarly, on the IRSatVideo-LEO [
26] dataset, it delivers competitive detection accuracy with an exceptionally low false alarm rate of
, indicating its strong robustness in practical scenarios. The FeedbackSTS-Det-T3 and FeedbackSTS-Det-T4 variants also show competitive performance, particularly in specific metrics. FeedbackSTS-Det-T3 achieves the second-best performance in
and
on NUDT-MIRSDT [
25], while FeedbackSTS-Det-T4 excels on IRSatVideo-LEO [
26] with the highest
of 0.9648 and
of 0.9816. This performance progression across sampling intervals reveals an important trade-off: larger intervals reduce computational complexity while maintaining competitive detection accuracy.
Notably, all three FeedbackSTS-Det variants significantly outperform both traditional model-driven methods and contemporary data-driven approaches. While methods like DNANet_DTUM [
25] and ResUNet_RFR [
26] show respectable results, they are consistently surpassed by our proposed framework across virtually all metrics. This performance advantage is achieved while maintaining reasonable computational requirements, with all FeedbackSTS-Det variants utilizing only 5.68 M parameters and FLOPs decreasing from 79.39 G to 68.50 G as the sampling interval increases. The consistent superiority of FeedbackSTS-Det across different sampling configurations validates the effectiveness of our architectural design and demonstrates its robustness for infrared small target detection in diverse operational scenarios.
The ROC results are presented in
Figure 3. As shown in
Figure 3a, all FeedbackSTS−Det variants achieve a faster increase in TPR, reaching 1 more quickly than other models. In the more challenging IRSatVideo-LEO dataset (
Figure 3b), although FeedbackSTS-Det-T2 exhibits a slower initial TPR rise, it ultimately reaches the maximum value faster. Meanwhile, FeedbackSTS-Det-T3 and FeedbackSTS-Det-T4 maintain strong TPR growth throughout the entire phase, confirming their robust detection performance.
4.2.2. Qualitative Results
Qualitative results are presented in
Figure 4. The selected examples are organized as follows: rows 1–2 illustrate easy scenes from IRSatVideo-LEO [
26]; rows 3–4 depict medium scenes; rows 5–6 present challenging scenes from the same dataset; and rows 7–8 show sequence samples from NUDT-MIRSDT [
25].
The scenes encompass satellite, aerial, and maritime imagery captured from a vertical perspective. It can be observed that traditional model-driven methods, including low-rank and sparse representation techniques such as PSTNN [
38] and SRSTT [
44], exhibit limited detection performance in these scenes. The typical single-frame low-rank and sparse infrared small target detection method, PSTNN [
38], produces significant false alarms in most satellite nadir-view scenes, except for the sequence “EastNorthAsia25_43”, and fails to detect targets correctly in “Sequence92” and “Sequence96”. SRSTT [
44], as a representative multi-frame low-rank and sparse detection method, generates substantial false alarms across all sequences and exhibits missed detections in several satellite view sequences. Data-driven multi-frame methods show noticeable improvement, yet still exhibit certain limitations. Except for “Sequence96”, ALCNet_DTUM [
25] produces false alarms in all other sequences, with particularly severe cases in “Sequence92”. RFR-based [
26] frameworks (e.g., ResUNet_RFR [
26] and ACM_RFR [
26]) yield significant false alarms in sequences such as “EastNorthAsia0_97”, “EastAustralia3_94”, “EastAustralia5_07”, and “EastNorthAsia25_43”. However, ACM_RFR [
26] achieves relatively good detection performance on “Sequence96”. In contrast, it can be observed that all variants of our FeedbackSTS-Det achieve consistently strong performance across all scenarios and difficulty levels, specifically in terms of accurate target localization, low false alarm rate, and morphological accuracy of detected targets.
4.3. Ablation Study
This subsection presents experiments on FeedbackSTS-Det and its variants, aiming to verify the potential advantages of our proposed modules and key design decisions. If not stated explicitly, we set the temporal sampling interval to 2.
4.3.1. Ablation on Spatio-Temporal Semantic Feedback Strategy
Introduced in
Section 3.2, the spatio-temporal semantic feedback strategy is designed to strengthen inter-frame feature linkages for better infrared small target detection. Our approach is built upon a 3D U-Net backbone [
55]. A systematic comparison of the ablated variants of this feedback design is provided in
Table 2. This ablation study is designed to validate the effectiveness of our proposed framework by contrasting it against several alternative configurations, including unidirectional (All-Fwd, All-Bwd), partial semantic feedback (Part-FB1, Part-FB2), and feedback-disabled schemes (Dec-NoFB, Enc-NoFB).
As summarized in
Table 2, while simpler configurations like Enc-NoFB achieve the lowest parameter count and FLOPs, our optimal method, Full-FB, strikes a critical balance. It maintains full feature interaction capabilities in both the encoder and decoder, incurring only a modest increase in computational cost compared to the most constrained variants. Subsequent experiments confirm that the proposed spatio-temporal semantic feedback framework is a necessary and efficient component for accurate target localization, shape delineation, and false alarm suppression.
For consistent performance evaluation where higher values indicate better results across all metrics, including
,
,
, and
, we introduce the false alarm suppression rate (FSR), as formulated in Equation (
19), where
denotes the false alarm rate. Consequently, a higher FSR value indicates better performance, consistent with the other metrics and sharing the same order of magnitude by using the scaling factor
.
As illustrated in
Figure 5, we benchmark all spatio-temporal semantic feedback variants from
Table 2 against our optimal method, Full-FB, on the NUDT-MIRSDT [
25] dataset. The evaluation uses five metrics (
,
,
,
,
) under a fixed input size of
, and results show the clear superiority of our method across all metrics.
The visual comparisons corresponding to the methods in
Table 2 are provided in
Figure 6. For clarity, targets are annotated with bounding boxes positioned at image corners, with distinct colors assigned to different targets for easy cross-reference. The effectiveness of backward feedback in the decoder is demonstrated by comparing Full-FB with alternative designs. First, in
Figure 6a, Full-FB shows progressively stronger suppression and clearer targets during backward feedback (frames
to
), while Dec-NoFB performs poorly. Second,
Figure 6b reveals that the All-Fwd method yields unclear targets in initial frames (
,
) during forward feedback, whereas Full-FB exhibits this limitation only in the initial frame (
) of its backward process. Moreover, in
Figure 6c,e, targets in the second row (Full-FB) are consistently clearer than those in the first row (the compared methods), highlighting the benefit of forward feedback in the encoder. Finally,
Figure 6d,f indicate that removing spatio-temporal semantic feedback modules in certain layers degrades target feature extraction, further underscoring the necessity of the complete feedback framework.
4.3.2. Ablation on Sparse Grouping Method
To evaluate the effectiveness of our sparse grouping strategy within the SSM, we redesign several alternative methods for the construction of sparse frames, which are summarized as follows. Among them, the last one is the method we ultimately adopt for grouping frames.
Group-Rand-Seq: We randomly segment the input continuous frames into contiguous segments and perform alignment only between consecutive frames within each segment.
Group-Rand-Step-Fixed: We randomly determine a global sampling interval and uniformly adopt this interval across the network to achieve skip-frame alignment.
Group-Rand-Step-Rand: We assign a random sampling interval to each layer, enabling skip-frame alignment with layer-wise randomness.
Group-Fixed-Step-T2: We manually preset the sampling interval to as our final configuration to achieve skip-frame alignment.
As shown in
Table 3, among all variants, Group-Fixed-Step-T2 achieves the best overall performance, attaining the highest
(48.97),
(65.74),
(96.34), and
(98.09), while maintaining a competitive false alarm rate (1.19). Group-Rand-Step-Fixed delivers strong second-best results in
(92.35),
(1.18), and
(96.10), demonstrating the effectiveness of a globally consistent sampling interval. Notably, Group-Rand-Step-Rand achieves slightly higher
and
than Group-Rand-Step-Fixed but lags in
and
, indicating that layer-wise random sampling may disrupt stable temporal propagation. In contrast, Group-Rand-Seq shows the weakest performance across all metrics, suggesting that purely contiguous segmentation without skip-frame propagation limits the model’s ability to capture long-range dependencies. These results validate our final design choice of fixed-step sampling as the optimal configuration for balancing temporal coverage and propagation effectiveness.
4.3.3. Ablation on Sampling Interval in SSM
In this experiment, we compare the impact of different temporal sampling intervals of the SSM module on performance. For clarity, we use T1 to denote the baseline without temporal sampling, and T2, T3, and T4 as shorthands for FeedbackSTS-Det-T2, -T3, and -T4, with sparse frame sampling intervals of 2, 3, and 4, respectively. The computational efficiency of the model under different settings is summarized in
Table 4, which reports FLOPs and FPS for various sequence lengths
L and temporal sampling intervals
T based on an input image scale of
. The results demonstrate that for a fixed
T, longer sequences
L lead to higher FLOPs and generally lower FPS. Conversely, increasing the temporal sampling interval
T consistently reduces computational cost and improves inference speed across all sequence lengths. For instance, when the sequence length is set to
, the computational cost measured in FLOPs decreases from 68.42 G for
to 52.08 G for
, while the inference speed (FPS) increases from 7.5 to 13.7, representing a substantial improvement of 82.6% in processing efficiency. This analysis confirms that larger temporal sampling intervals enhance computational efficiency, especially for long sequences.
To evaluate the efficacy of the temporal sampling mechanism, we conduct a comparative analysis between the T2 condition (with a temporal sampling interval of length 2) and the T1 condition (without temporal sampling) on the IRSatVideo-LEO [
26], using
and
as key metrics. As shown in
Figure 7a, the
for T2 increases monotonically with the sequence length
L, whereas the
for T1 exhibits significant and unstable fluctuations. It is observed from
Figure 7b that the
for T2 remains consistently stable within a narrow range as
L increases. In contrast, the
for T1 varies drastically and is markedly higher than that of T2. In summary, the sparse frame sampling module significantly enhances target detection capability while effectively suppressing false alarms over long sequences, demonstrating its robust ability to propagate inter-frame features compared to the baseline T1 condition.
To investigate the capability of different sparse frame sampling intervals in extracting targets under varying input window sizes, we evaluate the effect of the input sequence length
L on the detection probability
across different sampling intervals using IRSatVideo-LEO [
26], as shown in
Figure 8. It could be observed that
increases with
L for all sampling intervals, validating that the sparse frame sampling module successfully enhances inter-frame dependencies in long sequences. Moreover, a longer sampling interval is generally associated with improved performance at an equivalent sequence length. An exception is noted at
, where T4 underperforms relative to T3; however, T4 demonstrates superior performance at
.
In summary, the experimental results suggest that increasing the sampling interval moderately reduces the network’s computational cost while improving its temporal propagation capability across long frame sequences. However, an overly large sampling interval T can compromise detection accuracy. Our experimental results confirm that choosing , 3, or 4 reduces computational cost to a certain extent while preserving or even improving the detection performance of the sequence. To be more specific, for scenarios prioritizing accuracy, is recommended. For deployment on platforms with strict computational limits, such as UAVs or edge devices, a larger T, specifically 3 or 4, is preferable to balance efficiency and detection performance.
5. Discussion
Although the proposed FeedbackSTS-Det shows clear improvements in moving infrared small target detection, several aspects deserve further discussion. By incorporating a closed-loop spatio-temporal semantic feedback strategy with paired forward and backward refinement modules, our method enhances inter-frame information exchange and enables retrospective error correction. This bidirectional design outperforms both unidirectional and feedback-disabled variants as confirmed by our ablation study. Additionally, the embedded sparse semantic module (SSM) further reduces computational cost while improving long-range temporal dependency modeling, achieving a favorable trade-off between accuracy and efficiency. These strengths collectively contribute to robust performance across diverse scenes, including satellite nadir-view, aerial, and maritime imagery.
Despite the promising results, the proposed method has several limitations that may lead to unstable behavior under specific conditions.
First, the SSM relies on a fixed sampling interval T chosen from , which is not adaptive to scene dynamics or target motion speed. Consequently, the model may struggle in scenarios where target motion is highly non-uniform, such as sudden acceleration or deceleration, as a fixed interval cannot optimally capture such varying motion patterns.
Second, the robustness of our model under extremely challenging conditions remains to be validated. Specifically, we identify the following potential failure scenarios: (a) low signal-to-noise ratio (SNR) conditions, where targets are nearly immersed in background noise and even temporal cues may become unreliable; (b) dense target swarms, where multiple small targets appear in close proximity, potentially causing confusion in the feature alignment process; and (c) rapidly changing backgrounds, such as scenes with sudden illumination variations or fast-moving clutter, which may violate the temporal consistency assumptions underlying our feedback strategy.
Third, the current framework assumes fixed-length sliding windows. In scenarios where targets appear intermittently or with long gaps, the fixed window size may either miss relevant temporal context or introduce redundant computation.
To address these limitations, future work will focus on developing an adaptive sparse sampling mechanism that dynamically adjusts the sampling interval T based on the inferred motion type of infrared targets. Additionally, we plan to evaluate our model on more challenging benchmarks specifically designed for low-SNR and dense-target scenarios, as well as on real-world datasets, to further assess its practical applicability. Extending the framework to cross-domain adaptation with unlabeled target scenes and multi-source infrared data is also a promising direction. Furthermore, we intend to incorporate interpretable neural network theory to better understand when and why the model fails, thereby guiding further improvements. Building on this, we will further develop the model to fully leverage multi-frame radiometric characteristics, unlocking the potential of FeedbackSTS-Det for robust and scalable moving infrared small target detection in real-world applications.
6. Conclusions
This paper presented a novel sparse-frames-based spatio-temporal feedback network, termed FeedbackSTS-Det, for moving infrared small target detection. Its core is a closed-loop semantic feedback strategy with forward and backward refinement modules that work jointly, enabling information exchange between consecutive frames, thereby improving detection accuracy and reducing false alarms. An embedded sparse semantic module (SSM) performs structured sparse temporal modeling to capture long-range dependencies with low computational cost. Extensive experiments on widely adopted multi-frame infrared small target datasets demonstrate the effectiveness of our proposed method under the evaluated scene configurations. While the proposed method achieves strong performance, it has certain limitations, including the fixed sampling interval and the assumption of fixed-length sliding windows. Deployment on resource-constrained platforms also requires careful consideration of the trade-off between accuracy and efficiency. To address these issues, future work will focus on developing an adaptive sampling mechanism and integrating interpretable network designs.
Author Contributions
Conceptualization, Y.H.; methodology, Y.H. and X.Q.; software, Y.H. and X.Q.; validation, Y.H., X.Q. and L.X.; formal analysis, Y.H. and Z.P.; investigation, L.X. and X.Z.; resources, Q.Q., H.G. and Z.P.; data curation, A.M.; writing—original draft preparation, Y.H.; writing—review and editing, Y.H. and Z.P.; visualization, Y.H., A.M. and X.Z.; supervision, Q.Q., H.G. and Z.P.; project administration, Y.H.; funding acquisition, Z.P. All authors have read and agreed to the published version of the manuscript.
Funding
This research was funded in part by the Natural Science Foundation of Sichuan Province of China under Grant 2025ZNSFSC0522, and in part by the National Natural Science Foundation of China under Grant 61571096.
Data Availability Statement
Acknowledgments
The authors would like to thank the University of Electronic Science and Technology of China for their support. The authors also thank Li et al. for providing the NUDT-MIRSDT dataset and acknowledge Ying et al. for providing the IRSatVideo-LEO dataset.
Conflicts of Interest
The authors declare no conflicts of interest.
References
- Dai, Y.; Wu, Y.; Zhou, F.; Barnard, K. Asymmetric contextual modulation for infrared small target detection. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, Virtual, 5–9 January 2021; pp. 950–959. [Google Scholar]
- 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]
- Han, Y.; Liao, J.; Lu, T.; Pu, T.; Peng, Z. KCPNet: Knowledge-driven context perception networks for ship detection in infrared imagery. IEEE Trans. Geosci. Remote Sens. 2022, 61, 5000219. [Google Scholar] [CrossRef]
- Zhao, Y.; Pang, Y.; Zhang, L.; Liu, H.; Zuo, J.; Lu, H.; Zhao, X. Unimmad: Unified multi-modal and multi-class anomaly detection via moe-driven feature decompression. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Denver, CO, USA, 3–7 June 2026; pp. 28502–28511. [Google Scholar]
- Tom, V.T.; Peli, T.; Leung, M.; Bondaryk, J.E. Morphology-based algorithm for point target detection in infrared backgrounds. In Proceedings of the Signal and Data Processing of Small Targets 1993, Orlando, FL, USA, 11–16 April 1993; SPIE: Bellingham, WA, USA, 1993; Volume 1954, pp. 2–11. [Google Scholar]
- Hadhoud, M.M.; Thomas, D.W. The two-dimensional adaptive LMS (TDLMS) algorithm. IEEE Trans. Circuits Syst. 1988, 35, 485–494. [Google Scholar] [CrossRef]
- Gao, C.; Meng, D.; Yang, Y.; Wang, Y.; Zhou, X.; Hauptmann, A.G. Infrared patch-image model for small target detection in a single image. IEEE Trans. Image Process. 2013, 22, 4996–5009. [Google Scholar] [CrossRef] [PubMed]
- Dai, Y.; Wu, Y. Reweighted infrared patch-tensor model with both nonlocal and local priors for single-frame small target detection. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2017, 10, 3752–3767. [Google Scholar] [CrossRef]
- Zhang, L.; Peng, L.; Zhang, T.; Cao, S.; Peng, Z. Infrared small target detection via non-convex rank approximation minimization joint l2,1 norm. Remote Sens. 2018, 10, 1821. [Google Scholar] [CrossRef]
- Sun, Y.; Yang, J.; An, W. Infrared dim and small target detection via multiple subspace learning and spatial-temporal patch-tensor model. IEEE Trans. Geosci. Remote Sens. 2020, 59, 3737–3752. [Google Scholar]
- Wang, G.; Tao, B.; Kong, X.; Peng, Z. Infrared small target detection using nonoverlapping patch spatial–temporal tensor factorization with capped nuclear norm regularization. IEEE Trans. Geosci. Remote Sens. 2021, 60, 5001417. [Google Scholar] [CrossRef]
- Liu, T.; Yang, J.; Li, B.; Wang, Y.; An, W. Infrared small target detection via nonconvex tensor tucker decomposition with factor prior. IEEE Trans. Geosci. Remote Sens. 2023, 61, 5617317. [Google Scholar] [CrossRef]
- Zhang, T.; Li, L.; Cao, S.; Pu, T.; Peng, Z. Attention-guided pyramid context networks for detecting infrared small target under complex background. IEEE Trans. Aerosp. Electron. Syst. 2023, 59, 4250–4261. [Google Scholar] [CrossRef]
- Li, B.; Xiao, C.; Wang, L.; Wang, Y.; Lin, Z.; Li, M.; An, W.; Guo, Y. Dense nested attention network for infrared small target detection. IEEE Trans. Image Process. 2022, 32, 1745–1758. [Google Scholar] [CrossRef] [PubMed]
- Wu, X.; Hong, D.; Chanussot, J. UIU-Net: U-Net in U-Net for infrared small object detection. IEEE Trans. Image Process. 2022, 32, 364–376. [Google Scholar] [PubMed]
- Hou, Q.; Zhang, L.; Tan, F.; Xi, Y.; Zheng, H.; Li, N. ISTDU-Net: Infrared Small-Target Detection U-Net. IEEE Geosci. Remote Sens. Lett. 2022, 19, 7506205. [Google Scholar] [CrossRef]
- Zhang, M.; Zhang, R.; Yang, Y.; Bai, H.; Zhang, J.; Guo, J. ISNet: Shape matters for infrared small target detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, New Orleans, LA, USA, 18–24 June 2022; pp. 877–886. [Google Scholar]
- Sun, H.; Bai, J.; Yang, F.; Bai, X. Receptive-field and direction induced attention network for infrared dim small target detection with a large-scale dataset IRDST. IEEE Trans. Geosci. Remote Sens. 2023, 61, 5000513. [Google Scholar] [CrossRef]
- Wu, F.; Liu, A.; Zhang, T.; Zhang, L.; Luo, J.; Peng, Z. Saliency at the helm: Steering infrared small target detection with learnable kernels. IEEE Trans. Geosci. Remote Sens. 2024, 63, 5000514. [Google Scholar] [CrossRef]
- Hu, C.; Huang, Y.; Li, K.; Zhang, L.; Long, C.; Zhu, Y.; Pu, T.; Peng, Z. DATransNet: Dynamic attention transformer network for infrared small target detection. IEEE Geosci. Remote Sens. Lett. 2025, 22, 7001005. [Google Scholar] [CrossRef]
- Wu, F.; Zhang, T.; Li, L.; Huang, Y.; Peng, Z. RPCANet: Deep unfolding RPCA based infrared small target detection. In Proceedings of the IEEE/CVF Winter Conference on Applications of Computer Vision, Waikoloa, HI, USA, 1–8 January 2024; pp. 4809–4818. [Google Scholar]
- Liu, P.; Pang, L.; Peng, J.; Luo, Y.; Liu, J.; Cao, X. CTVNet: Gradient Prior-Guided Deep Unfolding Network for Infrared Small Target Detection. IEEE Trans. Geosci. Remote Sens. 2025, 63, 5010514. [Google Scholar] [CrossRef]
- Xiong, Z.; Zhou, F.; Wu, F.; Yuan, S.; Fu, M.; Peng, Z.; Yang, J.; Dai, Y. DRPCA-Net: Make robust PCA great again for infrared small target detection. IEEE Trans. Geosci. Remote Sens. 2025, 63, 5005516. [Google Scholar] [CrossRef]
- Hou, R.; Yan, P.; Duan, X.; Wang, X. Unsupervised image sequence registration and enhancement for infrared small target detection. IEEE Trans. Geosci. Remote Sens. 2024, 62, 5620814. [Google Scholar] [CrossRef]
- Li, R.; An, W.; Xiao, C.; Li, B.; Wang, Y.; Li, M.; Guo, Y. Direction-coded temporal U-shape module for multiframe infrared small target detection. IEEE Trans. Neural Netw. Learn. Syst. 2023, 36, 555–568. [Google Scholar]
- Ying, X.; Liu, L.; Lin, Z.; Shi, Y.; Wang, Y.; Li, R.; Cao, X.; Li, B.; Zhou, S.; An, W. Infrared small target detection in satellite videos: A new dataset and a novel recurrent feature refinement framework. IEEE Trans. Geosci. Remote Sens. 2025, 63, 5002818. [Google Scholar] [CrossRef]
- Wu, F.; Liu, S.; Wang, H.; Tao, B.; Luo, J.; Peng, Z. Neural spatial–temporal tensor representation for infrared small target detection. Pattern Recognit. 2026, 169, 111929. [Google Scholar] [CrossRef]
- Li, R.; An, W.; Wang, Y.; Ying, X.; Dai, Y.; Wang, L.; Li, M.; Guo, Y.; Liu, L. Probing Deep into Temporal Profile Makes the Infrared Small Target Detector Much Better. arXiv 2025, arXiv:2506.12766. [Google Scholar]
- Gu, A.; Dao, T. Mamba: Linear-Time Sequence Modeling with Selective State Spaces. arXiv 2023, arXiv:2312.00752. [Google Scholar]
- Chen, T.; Ye, Z.; Tan, Z.; Gong, T.; Wu, Y.; Chu, Q.; Liu, B.; Yu, N.; Ye, J. MiM-ISTD: Mamba-in-mamba for efficient infrared small-target detection. IEEE Trans. Geosci. Remote Sens. 2024, 62, 5007613. [Google Scholar] [CrossRef]
- Liu, W.; Lu, X.; Zhang, J.; Li, D.; Zhang, X. MOU-Mamba: Multi-Order U-shape Mamba for infrared small target detection. Opt. Laser Technol. 2025, 187, 112851. [Google Scholar] [CrossRef]
- Kim, S.; Lee, J. Scale invariant small target detection by optimizing signal-to-clutter ratio in heterogeneous background for infrared search and track. Pattern Recognit. 2012, 45, 393–406. [Google Scholar] [CrossRef]
- Chen, C.P.; Li, H.; Wei, Y.; Xia, T.; Tang, Y.Y. A local contrast method for small infrared target detection. IEEE Trans. Geosci. Remote Sens. 2013, 52, 574–581. [Google Scholar] [CrossRef]
- Wei, Y.; You, X.; Li, H. Multiscale patch-based contrast measure for small infrared target detection. Pattern Recognit. 2016, 58, 216–226. [Google Scholar] [CrossRef]
- He, Y.; Li, M.; Zhang, J.; An, Q. Small infrared target detection based on low-rank and sparse representation. Infrared Phys. Technol. 2015, 68, 98–109. [Google Scholar] [CrossRef]
- Wang, X.; Peng, Z.; Kong, D.; He, Y. Infrared dim and small target detection based on stable multisubspace learning in heterogeneous scene. IEEE Trans. Geosci. Remote Sens. 2017, 55, 5481–5493. [Google Scholar] [CrossRef]
- Zhang, T.; Peng, Z.; Wu, H.; He, Y.; Li, C.; Yang, C. Infrared small target detection via self-regularized weighted sparse model. Neurocomputing 2021, 420, 124–148. [Google Scholar] [CrossRef]
- Zhang, L.; Peng, Z. Infrared small target detection based on partial sum of the tensor nuclear norm. Remote Sens. 2019, 11, 382. [Google Scholar] [CrossRef]
- Guan, X.; Zhang, L.; Huang, S.; Peng, Z. Infrared small target detection via non-convex tensor rank surrogate joint local contrast energy. Remote Sens. 2020, 12, 1520. [Google Scholar] [CrossRef]
- Kong, X.; Yang, C.; Cao, S.; Li, C.; Peng, Z. Infrared small target detection via nonconvex tensor fibered rank approximation. IEEE Trans. Geosci. Remote Sens. 2021, 60, 5000321. [Google Scholar] [CrossRef]
- Liu, H.K.; Zhang, L.; Huang, H. Small target detection in infrared videos based on spatio-temporal tensor model. IEEE Trans. Geosci. Remote Sens. 2020, 58, 8689–8700. [Google Scholar] [CrossRef]
- Liu, T.; Yang, J.; Li, B.; Xiao, C.; Sun, Y.; Wang, Y.; An, W. Nonconvex tensor low-rank approximation for infrared small target detection. IEEE Trans. Geosci. Remote Sens. 2021, 60, 5614718. [Google Scholar] [CrossRef]
- Liu, T.; Yang, J.; Li, B.; Wang, Y.; An, W. Representative coefficient total variation for efficient infrared small target detection. IEEE Trans. Geosci. Remote Sens. 2023, 61, 5622918. [Google Scholar] [CrossRef]
- Li, J.; Zhang, P.; Zhang, L.; Zhang, Z. Sparse regularization-based spatial–temporal twist tensor model for infrared small target detection. IEEE Trans. Geosci. Remote Sens. 2023, 61, 5000417. [Google Scholar] [CrossRef]
- Wu, F.; Yu, H.; Liu, A.; Luo, J.; Peng, Z. Infrared small target detection using spatiotemporal 4-D tensor train and ring unfolding. IEEE Trans. Geosci. Remote Sens. 2023, 61, 5002922. [Google Scholar] [CrossRef]
- Zhang, L.; Luo, J.; Huang, Y.; Wu, F.; Cui, X.; Peng, Z. Mdigcnet: Multi-directional information-guided contextual network for infrared small target detection. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2024, 18, 2063–2076. [Google Scholar]
- Goldfarb, D.; Qin, Z. Robust low-rank tensor recovery: Models and algorithms. SIAM J. Matrix Anal. Appl. 2014, 35, 225–253. [Google Scholar] [CrossRef]
- Liu, P.; Peng, J.; Luo, Y.; Fu, J.; Li, J.; Cao, X. DDFet: Infrared Small Target Detection via a Dual-Domain Fused Deep Unfolding Network. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2025, 18, 23646–23657. [Google Scholar] [CrossRef]
- Vaswani, A.; Shazeer, N.; Parmar, N.; Uszkoreit, J.; Jones, L.; Gomez, A.N.; Kaiser, Ł.; Polosukhin, I. Attention is all you need. In Proceedings of the Advances in Neural Information Processing Systems 30 (NeurIPS 2017); Curran Associates, Inc.: Red Hook, NY, USA, 2017. [Google Scholar]
- Zhang, M.; Ouyang, Y.; Gao, F.; Guo, J.; Zhang, Q.; Zhang, J. MOCID: Motion context and displacement information learning for moving infrared small target detection. In Proceedings of the AAAI Conference on Artificial Intelligence, Philadelphia, PA, USA, 25 February–4 March 2025; Volume 39, pp. 10022–10030. [Google Scholar]
- Zhang, M.; Li, X.; Gao, F.; Guo, J. Irmamba: Pixel difference mamba with layer restoration for infrared small target detection. In Proceedings of the AAAI Conference on Artificial Intelligence, Philadelphia, PA, USA, 25 February–4 March 2025; Volume 39, pp. 10003–10011. [Google Scholar]
- Zhang, S.; Zhang, H.; Cui, Y.; Xiong, R.; He, C.; Feng, D. SMMT: Siamese Motion Mamba with Self-attention for Thermal Infrared Target Tracking. In Proceedings of the International Conference on Intelligent Computing; Springer: Singapore, 2025; pp. 242–253. [Google Scholar]
- Qiu, X.; Luo, J.; Tian, W.; He, F.; Huang, Y.; Hu, C.; Peng, Z. Local-Motion Mamba with Frequency-Guided for Moving Infrared Small Target Detection. IEEE Geosci. Remote Sens. Lett. 2026, 23, 6003905. [Google Scholar] [CrossRef]
- He, K.; Zhang, X.; Ren, S.; Sun, J. Deep residual learning for image recognition. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Las Vegas, NV, USA, 27–30 June 2016; pp. 770–778. [Google Scholar]
- Çiçek, Ö.; Abdulkadir, A.; Lienkamp, S.S.; Brox, T.; Ronneberger, O. 3D U-Net: Learning dense volumetric segmentation from sparse annotation. In Proceedings of the International Conference on Medical Image Computing and Computer-Assisted Intervention; Springer: Cham, Switzerland, 2016; pp. 424–432. [Google Scholar]
- Dai, J.; Qi, H.; Xiong, Y.; Li, Y.; Zhang, G.; Hu, H.; Wei, Y. Deformable convolutional networks. In Proceedings of the IEEE International Conference on Computer Vision, Venice, Italy, 22–29 October 2017; pp. 764–773. [Google Scholar]
- Huang, Y.; Tang, Z.; Chen, D.; Su, K.; Chen, C. Batching soft IoU for training semantic segmentation networks. IEEE Signal Process. Lett. 2019, 27, 66–70. [Google Scholar]
- Dai, Y.; Wu, Y.; Zhou, F.; Barnard, K. Attentional local contrast networks for infrared small target detection. IEEE Trans. Geosci. Remote Sens. 2021, 59, 9813–9824. [Google Scholar] [CrossRef]
- Luo, Y.; Li, X.; Chen, S.; Xia, C.; Zhao, L. IMNN-LWEC: A novel infrared small target detection based on spatial–temporal tensor model. IEEE Trans. Geosci. Remote Sens. 2022, 60, 5004022. [Google Scholar] [CrossRef]
| 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. |