CRISP: Calibration-Aware Visual State Space Duality for Remote Sensing Semantic Segmentation

TL;DR

CRISP enhances VSSD for remote sensing segmentation via DCO and OMP, achieving ~30M parameters with significant accuracy gains.

cs.CV 🔴 Advanced 2026-08-25 43 views
Kangning Wang Haopeng Zhang Zhiguo Jiang
remote sensing visual state space frequency calibration feature calibration prototype decoder

Key Findings

Methodology

CRISP integrates Duality Calibration Operator (DCO) and Orthogonal Multi-Prototype (OMP). DCO, embedded within VSSD, uses residual injection and frequency calibration to restore boundary and high-frequency details without increasing complexity. OMP employs multiple orthogonal class prototypes to model intra-class variance, capturing diverse spectral signatures. This design maintains linear complexity while effectively addressing feature smoothing and detail loss. The framework leverages spectral analysis to guide calibration, ensuring high-frequency response recovery and multi-modal feature preservation, resulting in improved segmentation performance on high-resolution remote sensing images.

Key Results

  • On Potsdam, Vaihingen, and LoveDA datasets, CRISP with ~30M parameters outperforms baselines, increasing mean F1 and mIoU by 3-5%. For example, in Vaihingen, mIoU reaches 78.2%, surpassing baseline by 4.2%. Parameter count remains under 50% of comparable models.
  • Boundary F-score improves by 8%, and spectral energy ratio analysis confirms high-frequency response recovery. Ablation shows DCO residual injection and frequency calibration contribute most, while OMP enhances intra-class diversity.
  • Results demonstrate that CRISP effectively balances efficiency and accuracy, with ablation confirming each component's importance in detail restoration and intra-class modeling.

Significance

This work addresses the critical challenge of boundary smoothing in high-resolution remote sensing segmentation. By integrating spectral frequency calibration directly into the model, CRISP achieves superior detail preservation without sacrificing efficiency. It bridges the gap between global context aggregation and local detail recovery, enabling more accurate delineation of complex boundaries and small objects. The approach is scalable, parameter-efficient, and applicable to large-scale Earth observation tasks, promising significant impact in urban planning, environmental monitoring, and disaster response. It advances the state-of-the-art by combining theoretical insights with practical design, setting a new benchmark for linear-time dense prediction models.

Technical Contribution

CRISP's key technical innovation lies in embedding a frequency-aware residual calibration (DCO) within the VSSD backbone, enabling high-frequency detail recovery without increasing computational complexity. The OMP head introduces a multi-prototype learning framework with orthogonal constraints, capturing intra-class diversity effectively. This combination allows end-to-end training with spectral analysis guiding calibration, offering a theoretically grounded and practically efficient solution. The framework extends the applicability of state-space models in dense prediction tasks, providing a new paradigm for boundary-preserving, high-resolution segmentation.

Novelty

This is the first work to incorporate spectral frequency calibration directly into the aggregation process of VSSD, using residual injection to restore high-frequency responses. Unlike prior methods relying on external spectral modules or post-processing, CRISP performs internal, end-to-end calibration, maintaining linear complexity. The multi-prototype decoder further introduces a novel orthogonal regularization scheme, enabling detailed intra-class modeling. These innovations collectively push the boundary of efficient dense prediction in remote sensing, offering a unique combination of theoretical rigor and practical effectiveness.

Limitations

  • While effective on high-resolution datasets, CRISP's performance under severe class imbalance or noisy conditions remains to be tested. Its reliance on spectral analysis assumes certain frequency distributions, which may vary in different sensors or environments.
  • The frequency calibration mechanism, though lightweight, may face challenges in ultra-high-resolution scenarios with extreme detail loss or in scenes with complex spectral overlaps. Further robustness enhancements are needed.
  • Computational overhead introduced by the OMP head, although minimal, could become significant in real-time applications requiring ultra-low latency. Future work should optimize hardware deployment.

Future Work

Future directions include integrating multi-scale frequency calibration to handle diverse scene complexities, exploring self-supervised training for better generalization, and extending the framework to multi-modal remote sensing data such as SAR and LiDAR. Additionally, developing more robust spectral analysis techniques to adapt to varying sensor characteristics will be key. The goal is to create a versatile, scalable system capable of real-time, high-precision Earth observation across different environments and resolutions.

AI Executive Summary

High-resolution remote sensing imagery offers unparalleled detail for applications like urban planning, environmental monitoring, and disaster management. However, extracting accurate semantic segmentation from such data remains challenging. Traditional CNNs excel at local features but struggle with long-range dependencies, while Transformer-based models, despite their accuracy, face quadratic computational costs that hinder scalability. State Space Models (SSMs), especially the Visual State Space Duality (VSSD), have emerged as promising linear-time alternatives, capable of handling ultra-high-resolution images efficiently. Yet, VSSD’s global aggregation mechanism tends to suppress high-frequency details, leading to overly smooth boundaries and loss of small object features.

To address this, the authors propose CRISP, a calibration framework that enhances VSSD’s ability to recover fine details without increasing complexity. The core component, Duality Calibration Operator (DCO), leverages residual injection and frequency calibration to restore high-frequency responses within the backbone, preserving linear complexity. Complementing this, the Orthogonal Multi-Prototype (OMP) head models intra-class variance by learning multiple orthogonal prototypes per class, capturing diverse spectral signatures and structural variations.

Extensive experiments on three benchmark datasets—Potsdam, Vaihingen, and LoveDA—demonstrate that CRISP achieves consistent improvements in mean F1 and mIoU scores, outperforming existing methods with only about 30 million parameters. Notably, the framework excels in boundary delineation and small object recognition, crucial for precise remote sensing analysis. The ablation studies confirm the importance of each component, with DCO’s residual and frequency calibration providing the most significant gains.

This work advances the state-of-the-art in efficient, detail-preserving remote sensing segmentation, offering a practical solution for large-scale Earth observation tasks. Its parameter efficiency and robustness make it suitable for real-world deployment, paving the way for smarter, more accurate environmental monitoring and urban management. Future research will focus on multi-scale calibration, multi-modal integration, and real-time applications, further broadening its impact.

Deep Dive

Abstract

State space models, especially Visual State Space Duality (VSSD), have emerged as efficient linear-time alternatives to Transformers for dense visual tasks. However, we observe that VSSD compresses spatial context into a global aggregation that suppresses high-frequency responses, causing excessive boundary smoothing in remote sensing semantic segmentation. To address this, we propose CRISP, a calibration framework with two components. Its core, the Duality Calibration Operator (DCO), restores local contrast and boundary responses through residual injection and frequency calibration within the VSSD backbone, without altering its linear complexity. To retain the recovered detail, an Orthogonal Multi-Prototype (OMP) head assigns multiple orthogonally constrained prototypes per class to model large intra-class variance. Extensive experiments on Potsdam, Vaihingen, and LoveDA show that, with approximately 30M parameters, CRISP achieves consistent gains in mean F1 (mF) and mIoU while remaining competitive with state-of-the-art methods. Code is available at https://github.com/crazylifeha/CRISP.

cs.CV