Papers
Topics
Authors
Recent
Search
2000 character limit reached

Noise-Suppression FPN (NS-FPN)

Updated 3 July 2026
  • NS-FPN is an architectural variant of FPN that suppresses high-frequency and spatially distributed noise via frequency-domain purification.
  • It employs Low-Frequency Guided Feature Purification and Spiral-Aware Feature Sampling to enhance multi-scale feature fusion for robust infrared detection and segmentation.
  • Experimental results demonstrate significant reductions in false alarms and improved IoU, detection probability, and mAP with only marginal increases in parameters and FLOPs.

A Noise-Suppression Feature Pyramid Network (NS-FPN) is an architectural variant of the standard Feature Pyramid Network (FPN) framework, explicitly engineered to suppress both high-frequency and spatially distributed noise during multi-scale feature fusion. NS-FPN has been introduced to enhance the robustness and discriminativeness of convolutional neural network-based detectors and segmenters, particularly in the context of infrared small target detection and segmentation (IRSTDS) amid substantial background clutter and sensor noise. Unlike previous FPN variants that primarily emphasize feature representation enhancement, NS-FPN prioritizes noise removal via frequency-domain purification and structured, content-adaptive multi-scale fusion, yielding significant reductions in false alarms and improved detection accuracy (Yuan et al., 9 Aug 2025).

1. Architectural Overview

NS-FPN retains the canonical top-down pathway and lateral connection paradigm of the standard FPN, but introduces two functionally novel modules: Low-Frequency Guided Feature Purification (LFP) and Spiral-Aware Feature Sampling (SFS). Each 1×1 lateral convolution in the FPN is replaced with an LFP block, while conventional upsampling plus summation operations are replaced by SFS (except at the highest pyramid level, where LFP is used in isolation).

The processing chain is as follows:

  • The backbone network (e.g., ResNet) extracts multi-level features (C1C_1 through C4C_4), each of which is channel-reduced via a 1×1 convolution to produce {X1,X2,X3,X4}\{X_1, X_2, X_3, X_4\}.
  • Each XiX_i undergoes LFP, outputting Xi′X_i'.
  • The top-down pathway fuses pyramid levels by recursively applying SFS: Y4=X4′Y_4=X_4', Y3=SFS(X3′,Y4)Y_3=\mathrm{SFS}(X_3', Y_4), Y2=SFS(X2′,Y3)Y_2=\mathrm{SFS}(X_2', Y_3), Y1=SFS(X1′,Y2)Y_1=\mathrm{SFS}(X_1', Y_2).
  • The fused pyramidal outputs {Y1,Y2,Y3,Y4}\{Y_1, Y_2, Y_3, Y_4\} are passed to subsequent detection or mask heads.

Parameter and computational complexities increase marginally compared to standard FPN: total parameters grow from 3.91M to 4.17M, and FLOPs from 6.80G to 7.96G on a 512×512 input (Yuan et al., 9 Aug 2025).

2. Low-Frequency Guided Feature Purification (LFP)

The LFP module is designed to suppress high-frequency noise embedded in feature maps while retaining signal components conducive to robust target detection.

  • Frequency Decomposition: Each feature map C4C_40 is transformed to the frequency domain via Discrete Fourier Transform (DFT), yielding C4C_41. A learnable low-frequency binary mask C4C_42 separates low (C4C_43) and high-frequency (C4C_44) components.
  • Low-Frequency Attention: C4C_45 is inverse-transformed to the spatial domain, upon which an attention map C4C_46 is computed using channel-concatenated average and max pooling followed by a two-layer 1×1 convolution and sigmoid activation.
  • Guided High-Frequency Suppression: The high-frequency component is modulated elementwise by C4C_47, followed by a gated Gaussian filter with learnable standard deviation C4C_48 to further attenuate weak activations:

C4C_49

  • Feature Reconstruction: The purified feature is reconstructed as {X1,X2,X3,X4}\{X_1, X_2, X_3, X_4\}0; equivalently, DWT/IDWT may be used.

Total additional overhead is ≈0.01M params and ≈0.01G FLOPs per stage. Backpropagation flows through both the low-pass filter and the Gaussian kernel with respect to the primary detection objective (Yuan et al., 9 Aug 2025).

3. Spiral-Aware Feature Sampling (SFS)

The SFS module generalizes top-down pyramid fusion by replacing static upsampling/addition with a learnable, content- and geometry-aware attention mechanism anchored in spiral sampling.

  • Sampling Offsets: For each head {X1,X2,X3,X4}\{X_1, X_2, X_3, X_4\}1 and sampling point {X1,X2,X3,X4}\{X_1, X_2, X_3, X_4\}2, define spiral offsets in polar coordinates {X1,X2,X3,X4}\{X_1, X_2, X_3, X_4\}3, map to Cartesian {X1,X2,X3,X4}\{X_1, X_2, X_3, X_4\}4, and add a global learnable bias {X1,X2,X3,X4}\{X_1, X_2, X_3, X_4\}5.
  • Deformable Feature Extraction: At each spatial location, higher-level features are sampled at spiral-offset neighborhoods via bilinear interpolation.
  • Cross-Attention Fusion: Query ({X1,X2,X3,X4}\{X_1, X_2, X_3, X_4\}6) and key/value ({X1,X2,X3,X4}\{X_1, X_2, X_3, X_4\}7) inputs undergo layer normalization. Standard multi-head attention is computed:

{X1,X2,X3,X4}\{X_1, X_2, X_3, X_4\}8

{X1,X2,X3,X4}\{X_1, X_2, X_3, X_4\}9

with scalar form at each location:

XiX_i0

  • Parameter and Compute Costs: SFS introduces ∼0.25M additional parameters, ∼1.15G more FLOPs (Yuan et al., 9 Aug 2025).

4. Integration in IRSTDS Frameworks

NS-FPN is implemented as a modular, plug-in neck compatible with IRSTDS models such as MSHNet and YOLOv8n-p2. For a standard 512×512 input, backbone outputs are processed via LFP and SFS at each scale, yielding pyramidal features input to detection and segmentation heads. The design is readily adaptable to variable backbone architectures and target tasks without modification to core detection or segmentation modules.

5. Experimental Validation and Ablation Studies

Comprehensive evaluation on public IRSTDS datasets corroborates the efficacy of NS-FPN in both detection and segmentation:

  • On IRSTD-1K, NS-FPN achieves IoU 69.3%, detection probability XiX_i1 95.2%, and false alarm rate XiX_i2 8.6, compared to baseline FPN's 67.0%, 91.2%, and 13.1, respectively. LFP and SFS modules contribute additively and synergistically, as demonstrated by ablation.
  • On NUAA-SIRST, NS-FPN achieves IoU 78.8% with XiX_i3 as low as 1.6.
  • On detection with YOLOv8n-p2, mAPXiX_i4 is improved from 85.0% to 86.3%.
  • Module-wise complexity increments over FPN are marginal (total 4.17M params, 7.96G FLOPs).

These results indicate substantial reductions in false alarms and improvements in both segmentation and detection metrics, with the bulk of gains attributable to LFP's noise purification and SFS's adaptive feature fusion (Yuan et al., 9 Aug 2025).

While other noise-aware FPN variants—such as the Octave convolution-based semantic attention FPN (OcSaFPN) (Li et al., 2020) and contrastive loss-regularized NT-FPN (Fang et al., 25 Jul 2025)—also incorporate frequency decomposition and/or attention for robust feature fusion, NS-FPN is unique in its direct modularization of frequency-space purification (LFP) and learnable geometric fusion (SFS), and in its explicit ablation of false alarm suppressive effect. Unlike NT-FPN, which leverages contrastive objectives on embedding spaces, NS-FPN performs concrete frequency- and geometry-based modulation with negligible parameter increase and tightly integrated blocks.

A plausible implication is that NS-FPN's emphasis on pre-fusion frequency filtration rather than post-fusion attention or information regularization enables superior noise resilience without substantial model reparametrization or added supervisory loss components.

7. Pseudocode and Reproducibility

The forward computational graph for NS-FPN, as defined in the original work, is summarized as:

XiX_i5

Core module operations (DFT filtering, attention map computation, gated Gaussian filtering, and deformable spiral sampling) are mathematically specified in the primary reference (Yuan et al., 9 Aug 2025). These explicit formulations and the lightweight nature of the modifications facilitate direct reproduction and further experimentation within the context of IRSTDS or any multi-scale feature learning application.

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to Noise-Suppression Feature Pyramid Network (NS-FPN).