Next Article in Journal
An Innovative Coastal Altimetry Waveform Processing Approach Based on Wave-Transformer Classifier
Previous Article in Journal
Two-Stage Oil Spill Detection in SAR Using a Domain-Adapted Segment Anything Model
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

MSMamba: A Multi-Semantic Mamba Framework for Referring Remote Sensing Image Segmentation

1
School of Automation and Electrical Engineering, University of Science and Technology Beijing, Beijing 100083, China
2
Key Laboratory of Knowledge Automation for Industrial Processes, Ministry of Education, Beijing 100083, China
*
Author to whom correspondence should be addressed.
Remote Sens. 2026, 18(12), 1949; https://doi.org/10.3390/rs18121949 (registering DOI)
Submission received: 16 March 2026 / Revised: 6 June 2026 / Accepted: 9 June 2026 / Published: 12 June 2026
(This article belongs to the Section AI Remote Sensing)

Highlights

What are the main findings?
  • MSMamba introduces a Mamba-driven multi-semantic framework for referring remote sensing image segmentation.
  • The proposed Visual–Text Fine-grained Block (VTFB) and multi-scale fusion decoder (MSFD) significantly enhance fine-grained language grounding and scale-aware boundary refinement.
What is the implication of the main finding?
  • State-space modeling provides an efficient, scalable alternative to heavy attention mechanisms for long-range context modeling in large-scale remote sensing imagery.
  • Experiments on four public benchmarks show consistent improvements in segmentation accuracy, especially with long-text and cluttered scene descriptions.

Abstract

Remote sensing referring segmentation aims to extract the exact region of an object in an aerial image based on a natural language description, but it remains challenging because remote sensing scenes cover large areas, many objects look similar, and the descriptions are often long and detailed. Existing attention-based models are computationally expensive on large images and may underuse fine-grained language cues, which can lead to inaccurate or incomplete masks. To address this, we present MSMamba, an efficient framework built on a state space model for stable long-range context modeling over large spatial grids. We further strengthen language grounding by identifying descriptive words in the expression and using them to guide visual features from coarse localization to boundary refinement. In addition, we design a scale-aware decoding strategy that fuses multi-scale features with adaptive gating to better handle severe size variation and thin structures. Experiments on four public benchmarks show that MSMamba consistently improves segmentation quality. On RefSegRS, MSMamba improves Pr@0.8 on the test set by 25.53% and increases mIoU by 6.65%. On RRSIS-HR, MSMamba improves Pr@0.8 by 9.09% and increases mIoU by 3.02%. These results suggest that combining a state space model with structured language guidance and scale-aware fusion is a practical alternative to attention-only designs for remote sensing referring segmentation.

1. Introduction

With the rapid increase in spatial resolution and diversity of remote sensing imagery, there is a growing need for fine-grained, human-interpretable scene understanding. Referring remote sensing image segmentation (RRSIS) [1,2,3] addresses this demand by taking a remote sensing image and a free-form natural language expression as input, and producing a segmentation mask for the uniquely referred target. By explicitly bridging visual content and linguistic descriptions, RRSIS enables more flexible human–machine interaction in applications such as intelligent monitoring [4], land-use and land-cover analysis [5], disaster assessment [6], and urban planning [7], and represents an important step from perceptual to more cognitive remote sensing interpretation.
To make RRSIS useful in the above applications, the model needs reliable vision–language interaction in high-resolution, large-area scenes. Figure 1 summarizes the main interaction paradigms and their limitations. In Figure 1a, self-attention concatenates visual tokens I and text tokens T to produce the multimodal self-attention feature F SA . Since each token attends to all others, the cost grows quickly with the sequence length, which is expensive for large images. It can also become less focused in scenes that contain many look-alike regions, or large areas with little texture and weak contrast. This makes it harder to keep clear long-range and multi-scale links, and it may lead to incomplete or broken masks. In Figure 1b, cross-attention uses pooled text queries T to attend to visual features I and outputs the multimodal cross-attention feature F CA . This is more efficient, but pooling the text tokens into a smaller set of queries may remove fine-text details, and the fixed query capacity limits step-by-step refinement, especially for small or low-contrast targets. Overall, current attention-based designs still face a trade-off between efficiency and fine-grained alignment.
Recent Mamba-style state space models have shown strong potential for remote sensing vision [8,9,10]. This trade-off motivates us to consider a Mamba-based design, as shown in Figure 1c. With selective scanning and state-space updates on joint visual-text states ( I & T ) , Mamba produces the multimodal Mamba feature F Mamba with linear cost and refines context gradually across layers and spatial positions. Because the state is updated during scanning, the model can build global context over large areas and maintain more continuous long-structure representations, which suits remote sensing scenes. However, using Mamba directly is still not enough. Remote sensing images often contain many similar objects, such as dense buildings and repeated farmland. In such cases, state propagation alone can blur the distinction among candidates and confuse the referred target. Stronger attribute cues from the text are therefore required; otherwise, the model may yield incomplete masks under strict evaluation settings. In addition, RRSIS expressions are often long and detailed, containing multiple attributes and complex spatial relationships. If language is only used coarsely, the model may underutilize these constraints and fail to ground complex descriptions. These issues motivate a Mamba-driven framework that strengthens fine-grained vision–text alignment and improves robustness under visual confusion, leading to our proposed method.
Building on the above analysis, we propose MSMamba, a multi-semantic Mamba-driven framework for referring remote sensing image segmentation. By leveraging Mamba-style state space modeling, MSMamba scales vision-language reasoning to high-resolution, large-area imagery through efficient context propagation on dense spatial grids. The continuous state update helps build a stable global context, which is particularly important for remote sensing scenes with wide spatial extents and strong visual ambiguity among candidate regions.
While a global context is necessary, accurate referring segmentation also requires fine-grained grounding between the expression and local visual details. To meet this need, we design a lightweight Visual–Text Fine-grained Block (VTFB) that decomposes the input expression into attribute-level features and further builds complementary global and local text features. These features guide the segmentation process in a stage-wise manner so that language information can modulate visual features at different scales and support more precise alignment. Meanwhile, remote sensing targets vary greatly in size and shape, and many targets are small or have thin boundaries, so strong cross-scale fusion is also required. Therefore, we further introduce an enhanced multi-scale fusion decoder (MSFD), which strengthens cross-scale feature interaction through differential modeling and gated fusion. This design improves cross-resolution consistency and helps delineate small targets and complex boundaries.
With these designs, MSMamba achieves state-of-the-art (SOTA) performance on four mainstream RRSIS benchmarks, including RefSegRS, RRSIS-D, RISBench, and RRSIS-HR. Across datasets, MSMamba provides more reliable grounding for long and attribute-rich expressions and produces higher-quality masks in cluttered scenes, especially on thin structures and boundary-sensitive regions. These results support the effectiveness of combining state-space multimodal modeling with explicit fine-grained semantic injection and strengthened multi-scale decoding.
In summary, our main contributions are as follows:
  • We explore a Mamba-driven framework for referring remote sensing image segmentation and design a Visual–Text Fine-grained Block (VTFB) based on state space modeling to improve fine-grained vision–language alignment under long and complex descriptions.
  • We design an enhanced multi-scale fusion decoder (MSFD) that strengthens cross-scale feature interaction and improves segmentation of small objects and boundary regions.
  • Extensive experiments on four public benchmarks (RRSIS-D, RRSIS-HR, RefSegRS, and RISBench) demonstrate the effectiveness and state-of-the-art performance of MSMamba. Further analysis shows more evident advantages in long-text scenarios.

2. Related Works

2.1. Referring Image Segmentation

Referring Image Segmentation (RIS) extends visual grounding by predicting a pixel-accurate mask for a target specified by a natural language expression. It requires precise boundaries and reliable vision–language alignment [11]. Early RIS methods typically adopted a two-stream design with convolutional visual backbones and recurrent language encoders, and then used iterative refinement or recurrent multimodal interaction to reduce boundary ambiguity [12,13,14]. However, these approaches often encode expressions coarsely and provide limited long-range, multi-scale reasoning. This can lead to missed small or thin targets and fragmented masks in cluttered scenes.
Later work strengthened linguistic reasoning and fine-grained grounding through structured semantics and tighter cross-modal alignment. Typical directions include decomposing expressions into components for modular alignment [15], emphasizing keyword-aware cues at the pixel level [16], modeling cross-modal dependencies with attention mechanisms [17], and explicitly representing entities and attributes for more interpretable grounding [18]. Multi-stage coarse-to-fine alignment with consistency constraints further improves robustness in complex scenes [19]. Nevertheless, many methods still rely on attention-heavy interactions or pooled sentence-level representations, which makes it difficult to scale to larger receptive fields while preserving fine-grained semantic constraints.
With the rise of Transformer, RIS shifted toward unified cross-modal modeling with layered self-attention. Language-aware mechanisms are integrated into visual Transformers [20,21], and linguistic cues are incorporated early in the encoder to maintain semantic consistency across feature hierarchies [22,23,24]. These frameworks generally improve global dependency modeling and boundary quality, but dense attention is computationally expensive for high-resolution inputs. It can also be less stable in scenes with repetitive textures and large areas of similar regions, which motivates more scalable long-range modeling and more structured semantic conditioning.
Recent studies further advance RIS by improving semantic granularity and contextual reasoning, including joint word-pixel and sentence-mask alignment [25], modeling implicit linguistic cues [26], reducing cross-modal gaps with masking or reconstruction objectives [27], and extending RIS to more open-domain referring settings [28]. These advances have also encouraged referring segmentation to move beyond natural images into domain-specific imagery, including remote sensing, where large-scale scenes and fine-grained descriptions make efficient and reliable grounding particularly important.

2.2. Referring Remote Sensing Image Segmentation

Referring remote sensing image segmentation (RRSIS) adapts RIS to aerial imagery and requires grounding free-form expressions on large-scale remote sensing scenes. Remote sensing images are extremely large and exhibit strong scale variation, which challenges both efficiency and the delineation of small objects. Many regions look visually similar from a top-down viewpoint, and repeated patterns increase instance ambiguity. Expressions are often long and attribute-rich, and the layered constraints must be explicitly grounded to avoid drifting into similar-looking regions. These properties make RRSIS more demanding than natural-image RIS.
The task and the RefSegRS benchmark were introduced by Yuan et al. [1], who fused language-guided embeddings into multi-level visual features to reduce missed detections of small or sparse objects. In parallel, geometry-aware designs were developed to address severe scale variation and rotation effects. RMSIN enhances multi-scale integration and rotation robustness, releasing the more challenging RRSIS-D benchmark [3]. Subsequent work further strengthens grounding with finer word-level interaction and pixel-level alignment, such as FIANet [29]. MAFN [30] further enhances structural consistency and boundary quality through pixel-level relevance modeling and unified multi-scale and rotation-aware decoding.
More recent approaches emphasize stronger bidirectional vision–language alignment during encoding and introduce more challenging evaluation settings. CroBIM incorporates prompt learning and cascaded cross-modal refinement modules and releases the RISBench benchmark with attribute-rich expressions and complex constraints [31]. CADFormer adopts closed-loop mutual guidance and provides the high-resolution RRSIS-HR benchmark to better reflect large-area, high-detail imagery [32].
Overall, existing RRSIS methods perform well on short expressions and medium-to-large targets, but three issues remain. Many models still scale poorly to high-resolution, large-area imagery due to heavy backbones and attention-intensive interaction. Fine-grained grounding is often insufficient under strong visual ambiguity because attribute-level cues are not continuously exploited. Cross-scale fusion can also be weak for large-scale variation and thin boundaries, leading to incomplete masks and degraded boundary quality.

3. Proposed Methodology

3.1. Preliminaries: State Space Model (SSM)

SSM is inspired by linear time-invariant systems and models mapping from inputs to outputs through a latent state. For an input signal x ( t ) R d s and output y ( t ) R d s , an SSM maintains a hidden state h ( t ) R N s , where N s denotes the state dimension and d s denotes the input feature dimension. The dynamics are governed by the following linear ordinary differential equation:
h ( t ) = A h ( t ) + B x ( t ) , y ( t ) = C h ( t ) ,
where A R N s × N s is the state transition matrix, and B R N s × d s and C R d s × N s map the input to the state and the state to the output, respectively. In vision tasks, images are processed as discrete token sequences by serializing two-dimensional features, so the continuous SSM needs to be discretized to operate on sampled sequences.
Mamba [33] adopts the zero-order hold (ZOH) scheme to discretize the continuous system with a discretization step size Δ . Specifically, the continuous parameters A and B are transformed into discrete counterparts A ¯ and B ¯ as
A ¯ = exp ( Δ A ) , B ¯ = ( Δ A ) 1 exp ( Δ A ) I Δ B ,
where I denotes the identity matrix. After discretization, the state update can be written in a recurrent form:
h t = A ¯ h t 1 + B ¯ x t , y t = C h t ,
which enables long-range dependency modeling through state propagation with linear complexity in sequence length.
A key limitation of the standard SSM is that its parameters remain constant across different inputs, which restricts content-adaptive modeling. Mamba addresses this by introducing a selective mechanism that makes key parameters input-dependent, notably the input-to-state and state-to-output mappings (and in many implementations also the timescale Δ ), allowing the model to dynamically adjust its contextual representations while preserving linear-time training and inference.
Due to the strong long-sequence modeling ability of Mamba, its exploration has gradually extended from language modeling to the vision domain. Recent studies have developed Mamba-based visual backbones for image classification and segmentation [34]. Since Mamba is originally designed for one-dimensional sequences rather than two-dimensional images, ViM [34] adapts it through image serialization and bidirectional scanning, while VMamba further introduces four-directional scanning to enhance spatial modeling [35]. In remote sensing, existing works mainly focus on the influence of different scanning strategies on semantic segmentation performance [36,37]. However, existing evidence shows that multi-directional scanning does not bring consistently significant gains [38]. Therefore, for remote sensing scenarios, improving performance requires not only effective spatial modeling, but also stronger semantic interaction and feature alignment.

3.2. Architecture Overview

We propose a remote sensing referring segmentation framework named MSMamba, as illustrated in Figure 2. The architecture consists of three components: a visual encoder enhanced by the proposed Visual–Text Fine-grained Block (VTFB), a text backbone, and a multi-scale fusion decoder (MSFD). Given an input image I and a referring expression E, the visual encoder follows the VMamba [35] paradigm, where VSS blocks and VTFBs are alternately stacked to extract hierarchical visual representations across stages. The MSFD takes the stage-wise features produced by the visual encoder as input and performs cross-scale interaction and adaptive fusion. A lightweight segmentation head is then applied to the fused representation to generate the final prediction corresponding to the target referred by E.
VTFB serves as the core unit for multimodal interaction within the visual encoder. It begins with a word-level semantic processor (WLSP) that parses the expression, locates attribute-related token indices in the BERT sequence, and constructs a bridge feature that encodes the attribute-level semantics of the referred target. The Global–Local Cross-Modal Alignment (GL-CA) then integrates linguistic cues with the visual representation to produce a global alignment feature and a local alignment feature. Finally, the visual feature, global alignment feature, bridge feature, and local alignment feature are concatenated in a fixed order and fed into an SS2D block [35] to propagate multimodal context over the spatial grid. After this interaction, we retain only the visual-related channels as the stage-wise features for downstream decoding.

3.3. Visual–Text Fine-Grained Block (VTFB)

3.3.1. Word-Level Semantic Processor

As shown in Figure 3, the Visual–Text Fine-grained Block (VTFB) enhances fine-grained vision–language interaction. VTFB first employs a Word-Level Semantic Processor (WLSP) to construct a stage-aware semantic bridge from descriptive words in the referring expression, which help distinguish the target from visually similar candidates. The bridge feature is mainly derived from attribute-level semantics, and its composition is further analyzed in the subsequent ablation study.
Given an input expression, we tokenize it using BERT and obtain contextual token embeddings L R N × D , where N is the token length and D is the embedding dimension. In parallel, WLSP parses the textual expression corresponding to L and extracts attribute-related words for constructing the semantic bridge. When spaCy [39] is available, we use its POS tags and dependency relations to select words in four categories: adjectives/modifiers, numerals/quantities, spatial/positional words, and morphological modifiers.
WLSP then aligns the extracted words with the BERT token sequence. Each word is tokenized into WordPiece tokens, and the positions of these tokens are located in the full BERT sequence using a two-step matching procedure. First, exact WordPiece sequence matching is performed, where the tokenized word is searched as a continuous subsequence in the BERT token sequence. If exact matching fails and the attribute word is tokenized into a single token, partial token matching is applied. In this step, the method searches for a BERT token that contains the attribute word or is contained within it, which helps handle minor tokenization inconsistencies. If a word cannot be aligned using these strategies, it is discarded. To ensure stable batch processing, at most M attribute words are kept per expression, with a validity mask indicating valid positions. Features corresponding to invalid words are set to zero. The selected token embeddings are gathered to form an attribute token sequence z bridge R M × D , where M is the number of selected tokens. We apply mean pooling to obtain a single attribute vector z ¯ bridge R D . At each stage, z ¯ bridge is projected to C i channels and broadcast to H i × W i , producing the bridge feature map X B R C i × H i × W i , where C i is the channel dimension and H i and W i respectively denote the feature-map height and width.
The attribute features provide auxiliary fine-grained cues, while the complete BERT sentence embedding is still preserved for multimodal fusion. This design strengthens attribute-aware understanding without making the model solely dependent on successful attribute extraction. When spaCy parsing is unavailable, a lightweight heuristic using predefined vocabulary and simple lexical rules serves as a deterministic fallback.

3.3.2. Global–Local Cross-Modal Alignment

Building on the stage-wise bridge feature constructed by WLSP, we further align language cues with visual features at both global and local levels. The Global–Local Cross-Modal Alignment (GL-CA) establishes semantic correspondences between text and visual features at both global and local levels. It fuses these cues with the visual stream through SS2D. At each stage i, we use the sentence-level [ CLS ] representation as a semantic query and perform cross-attention over the visual feature V R C i × H i × W i to obtain a global alignment feature. This feature aggregates visual evidence according to the overall intent of the expression. In parallel, we compute a local alignment feature by projecting pixel embeddings and token embeddings into a shared latent space and measuring their dot-product similarity. This captures fine-grained word-pixel correspondences that are important for boundary refinement and small-object discrimination. We then project the global and local alignment features to C i channels, yielding X G , X L R C i × H i × W i .
Together with the bridge feature X B , these features are concatenated with the visual feature along the channel dimension in a coarse-to-fine order:
X = Concat V , X G , X B , X L R 4 C i × H i × W i .
The influence of alternative concatenation orders is further analyzed in the subsequent ablation study. The fused tensor X is then processed by the SS2D block, which serves as the core selective scanning operator within the VSS block. SS2D propagates multimodal context over the spatial grid and performs cross-directional merging to produce a modality-aware representation with long-range interactions. By operating on the concatenated channels, SS2D enables explicit interaction between visual and textual features. After this interaction, we retain only the channels corresponding to the visual stream, as the textual cues have already been incorporated. The resulting tensor is used as the refined visual feature V * R C i × H i × W i for downstream decoding.

3.4. Multi-Scale Fusion Decoder (MSFD)

Inspired by RMSIN [3], we propose a multi-scale fusion decoder (MSFD) to handle severe scale variation and complex spatial layouts in remote sensing imagery. As shown in Figure 4, MSFD consists of a Multi-branch Cross-scale Parsing (MCP) and a Selective Kernel Scale-Aware Gate (SKSAG) executed sequentially, where MCP incorporates a Bidirectional Feature Pyramid Network (BiFPN) [40] to enhance multi-level features before cross-scale interaction.

3.4.1. Multi-Branch Cross-Scale Parsing

The Multi-branch Cross-scale Parsing (MCP) first enhances multi-level features using BiFPN. BiFPN performs top-down and bottom-up aggregation to inject high-level semantics into shallow layers while preserving fine-grained structural details, producing BiFPN-enhanced features { V BiFPN i } i = 1 4 .
To enable cross-scale reasoning in a shared spatial domain, we align { V BiFPN i } i = 1 4 to a unified resolution, concatenate it along the channel dimension, and compress the result into a compact representation V uni . Based on V uni , we use two complementary branches. The Cross-Scale Aware (CSA) module first constructs multiple receptive-field representations from V uni by keeping the original-resolution feature and generating two downsampled features with depthwise convolutions of different strides. These multi-scale features are then flattened and concatenated into a unified token sequence, allowing fine-resolution tokens to interact with coarse contextual tokens through self-attention. After the attention operation, only the tokens corresponding to the original resolution are reshaped back to the spatial feature map, producing V attn . In parallel, a Depthwise Separable Convolution (DSConv) branch further enhances localized structural patterns from the value features of the original-resolution tokens and outputs V conv . Their outputs are fused with a residual connection to obtain the first-stage cross-scale representation:
V mcp = V attn + V conv + V uni .
Next, we maintain scale diversity by applying grouped feedforward processing to V mcp . Specifically, V mcp is split into several channel groups, and each group is processed by a lightweight feedforward network consisting of point-wise convolutions, SwiGLU activation, depthwise convolution, and Global Response Normalization. The group outputs are concatenated and passed to a second CSA module for another round of cross-scale interaction and contextual aggregation. Finally, a unified feedforward network with the same design integrates the aggregated features to generate a cross-scale enhanced representation V mcp , which is then fed into SKSAG for adaptive structure-semantic fusion.

3.4.2. Selective Kernel Scale-Aware Gate

At each decoding stage, SKSAG combines a global cue extracted from V mcp with a local cue from V BiFPN . Concretely, we split V mcp along the channel dimension into four stage-specific groups according to the channel dimensions of the four feature levels, each corresponding to one stage in the unified construction. For the current stage, we take its corresponding channel group and upsample it to the stage resolution, yielding the stage-specific global feature V glob . In parallel, we apply a Selective Kernel convolution to the BiFPN feature at the same stage to obtain the local structural feature V loc .
We then predict a spatial-channel gate w [ 0 , 1 ] C × H × W to modulate V loc and combine it with V glob by element-wise addition:
V out = w V loc + V glob .
The resulting stage feature V out is forwarded to the segmentation head for mask prediction. The segmentation head is implemented with lightweight convolutional layers that progressively upsample and fuse multi-scale features via bilinear interpolation to regress a single-channel logit map M ^ . During training, M ^ is supervised by the binary ground-truth mask using the sum of Dice loss and BCEWithLogits [29,32].

4. Experiments

4.1. Metrics and Datasets

To evaluate MSMamba on the RRSIS task, we report three complementary metrics: precision at multiple IoU thresholds (Pr@0.5-Pr@0.9), mean Intersection-over-Union (mIoU), and overall Intersection-over-Union (oIoU). Pr reflects segmentation correctness under different strictness levels, where higher thresholds (e.g., Pr@0.8/0.9) are more sensitive to boundary quality and the completeness of thin or small structures. mIoU averages IoU over samples to provide a balanced view across object scales, while oIoU aggregates pixels globally and emphasizes overall mask quality. Together, these metrics provide a comprehensive assessment of referring segmentation performance.
We conduct experiments on four public datasets: RefSegRS [1], RRSIS-D [3], RISBench [31], and RRSIS-HR [32]. RefSegRS and RRSIS-D mainly evaluate referring segmentation under challenging target conditions, where objects are often small, low-saliency, or visually ambiguous in cluttered scenes with large-scale and orientation variations. In contrast, RISBench and RRSIS-HR place greater emphasis on language complexity, featuring attribute-rich annotations and longer descriptions that require fine-grained semantic parsing and multi-constraint grounding. Together, these benchmarks provide a rigorous testbed for assessing the generalization and robustness of MSMamba.

4.1.1. RefSegRS

RefSegRS contains 4420 image–expression–mask triplets, split into 2172 training, 431 validation, and 1817 testing samples. Each image is of size 512 × 512 and covers diverse remote sensing categories, including buildings, vehicles, vegetation, and water bodies. This dataset is characterized by containing many small or low-salience objects embedded in cluttered backgrounds, making it ideal for evaluating the performance of fine-grained boundary recovery and robust segmentation under challenging visual conditions.

4.1.2. RRSIS-D

RRSIS-D comprises 17,402 triplets, with 12,181 for training, 1740 for validation, and 3481 for testing. Images are high-resolution at 800 × 800 and exhibit substantial scale variation and diverse object orientations. The scenes span urban infrastructure, agricultural landscapes, and natural environments, providing a strong testbed for multi-scale aggregation and robustness to rotation and viewpoint-induced ambiguity.

4.1.3. RISBench

RISBench is a large-scale benchmark with 52,472 triplets (26,300 training, 10,013 validation, and 16,159 testing). All images are resized to 512 × 512 for consistent evaluation, while the underlying spatial resolution varies from 0.1 m to 30 m, covering a wide range of scales and details. RISBench defines 26 semantic classes, and each class is annotated with eight attributes, enabling evaluation of multi-attribute reasoning and cross-scene robustness in attribute-rich referring settings.

4.1.4. RRSIS-HR

RRSIS-HR contains 2650 triplets, split into 2118 training, 268 validation, and 264 testing samples. Each image is 1024 × 1024 and covers areas ranging from 0.06 km2 to 25 km2, with large variations in object sizes and scene complexity. The referring expressions are longer and more descriptive (19.6 words on average, with a minimum of 6 and a maximum of 41), which particularly emphasizes long-text semantic parsing, multi-instance disambiguation, and fine-grained segmentation on high-resolution imagery.

4.2. Implementation Details

Our framework is implemented in PyTorch 2.1.1 and built upon Mamba and VMamba. The visual backbone is initialized with ImageNet-pretrained weights, and the entire network is trained end-to-end. For language encoding, we adopt BERT-base [41] from the HuggingFace Transformers library [42] to extract contextualized text features. All experiments are conducted on two NVIDIA RTX 4090 GPUs using distributed data parallel training. We train the model for 40 epochs with a total batch size of 8 (4 per GPU). Following standard practice in prior work for fair comparison, all inputs are resized to 512 × 512 for both training and inference. We optimize the network using AdamW with a weight decay of 1 × 10 4 . The learning rate is set to 5 × 10 5 for newly introduced modules and 2.5 × 10 5 for the backbone and VSSM components, and is scheduled with cosine annealing and a 5 epoch warm-up.

4.3. Performance Comparison

In the RRSIS task, our method achieves highly competitive performance. We compare MSMamba with representative RIS models originally developed for natural images, including LAVT (2022) [23], CARIS (2023) [26], and RIS-DMMI (2023) [28]. We further compare MSMamba with some recently proposed methods for referring remote sensing image segmentation, such as FIANet (2024) [29], RMSIN (2024) [3], MAFN (2025) [30], and CADFormer (2025) [32].
For fairness, we reimplement the compared methods under a unified evaluation protocol whenever possible. For early baselines, we follow the results reported by the corresponding benchmark papers and explicitly annotate their sources in Table 1, Table 2, Table 3 and Table 4. For RefSegRS, RRSIS-D, and RISBench, these results are adopted from [31], which introduced the RISBench benchmark and reported the corresponding baseline results. For RRSIS-HR, they are adopted from [32], which introduced the RRSIS-HR benchmark. Notably, MSMamba shows clear gains on high-precision and fine-grained metrics, with improvements in Pr@0.8, Pr@0.9, and mIoU.

4.3.1. Quantitative Evaluations on RefSegRS

The RefSegRS dataset is characterized by targets containing a large number of small object instances and cluttered backgrounds. As shown in Table 1, MSMamba achieves highly competitive performance on this benchmark and leads on most evaluation metrics, outperforming competing Transformer-based methods. In terms of mIoU and oIoU, MSMamba provides consistent gains over the strongest baseline methods, indicating that our method provides more reliable segmentation results in cluttered backgrounds.
Notably, the advantages of MSMamba are most significant under high-IoU precision metrics, which directly reflect boundary accuracy and small-object recognition. Compared with FIANet, MSMamba improves Pr@0.8 and Pr@0.9 on the test set by +25.53% and +14.04%, respectively, and increases mIoU by +6.65%. Such gains suggest that MSMamba is not only better at coarse localization, but also significantly stronger at recovering thin structures, weak-texture regions, and complex boundaries. We attribute this improvement primarily to two factors: (1) Mamba-based state space modeling, which maintains stable long-range context aggregation in complex scenes; and (2) the VTFB module, where WLSP constructs an attribute-aware semantic bridge. Additionally, GL-CA performs global and local cross-modal alignment to strengthen fine-grained grounding for small instances.

4.3.2. Quantitative Evaluations on RRSIS-D

The RRSIS-D dataset contains objects with large-scale variations and strong visual ambiguity, and the corresponding referring expressions are usually long and contain rich modifiers. As shown in Table 2, our method achieves highly competitive results. The performance improvement of our model is more evident at higher IoU thresholds. Compared to the strongest competitor MAFN, MSMamba improves Pr@0.8 and Pr@0.9 on the test set by +1.67% and +2.50%, indicating better boundary quality under challenging scale variations.
We also observe clear gains in mIoU. Compared to MAFN, MSMamba increases mIoU on the test set by +1.46%. Compared to other Swin-B baselines, MSMamba improves mIoU by +3.23% over FIANet and by +3.16% over RMSIN, indicating more accurate pixel-level segmentation. Our method did not show significant improvement on oIoU. This is expected because oIoU aggregates pixels globally and is often dominated by large-area targets and background regions. In contrast, our design mainly boosts small targets, thin structures, and boundary-sensitive regions. Importantly, MSMamba maintains competitive oIoU, suggesting that enhancing fine-grained localization does not compromise the overall segmentation quality on large objects. This behavior is consistent with the complementary roles of VTFB and MSFD: VTFB strengthens attribute-aware grounding from global localization to local refinement, while MSFD improves cross-scale fusion via MCP and SKSAG to better preserve subtle structures and boundary details.

4.3.3. Quantitative Evaluations on RISBench

RISBench provides a larger training set with rich attribute annotations, and the reference expressions typically contain multiple intertwined semantic constraints. As shown in Table 3, MSMamba consistently outperforms the strongest Transformer-based baseline model, MAFN. Specifically, MSMamba improves Pr@0.8 and Pr@0.9 on the test set by +4.01% and +7.44%, indicating stronger fine-grained discrimination under complex semantics and better preservation of boundary details. Meanwhile, MSMamba achieves the best mIoU and improves it by +1.43% over MAFN on the test set, demonstrating robust mask quality across different scenarios and object scales. For oIoU, MSMamba remains highly competitive, improving it by +0.39% over MAFN on the test set and staying close to the best-performing baseline.

4.3.4. Quantitative Evaluations on RRSIS-HR

As shown in Table 4, MSMamba achieves highly competitive performance on RRSIS-HR and leads across all metrics. Compared with CADFormer, which obtains the strongest overall performance among the previous baselines, MSMamba improves Pr@0.5 by 3.41% and Pr@0.8 by 9.09%. Under stricter standards, the advantage of our model becomes more evident. Compared with the best previous result on Pr@0.9, MSMamba improves this metric by 3.78%, indicating stronger boundary-sensitive localization capability in high-resolution scenarios. We also observe clear improvements in both oIoU and mIoU, which are increased by 5.41% and 3.02% compared with CADFormer, respectively.
We attribute these gains to the proposed VTFB module. This module integrates fine-grained linguistic features with visual features through word-level semantic decomposition and global–local cross-modal alignment. This approach enhances the perception of attributes and relationships during the encoding process, which is crucial for long sentences and complex expressions in RRSIS-HR. This is also reflected by the larger improvements at high IoU thresholds, especially Pr@0.8 and Pr@0.9. We note that RRSIS-HR is a newly released and challenging benchmark, and the original paper only provides limited baseline results. To further strengthen the comparison, we additionally evaluate MAFN on RRSIS-HR. Since MAFN is specifically designed for referring remote sensing image segmentation and performs competitively on other RRSIS datasets, the compared methods on RRSIS-HR are now all remote-sensing-specific referring segmentation models, making the evaluation more consistent and task-relevant.

4.3.5. Computational Efficiency Analysis

We report the parameter size, FLOPs, GPU memory consumption, and inference time of MSMamba to examine the balance between model complexity and segmentation quality. As shown in Table 5, MSMamba uses 264.77 M parameters, 416.80 G FLOPs, and 19.54 GB of GPU memory. During inference, MSMamba achieves an average inference time of 59.1 ms per image. These results indicate that MSMamba maintains a moderate computational cost while delivering strong segmentation performance, demonstrating an effective balance between efficiency and accuracy. This advantage is attributed to the state-space-based vision–language interaction in VTFB, which improves multimodal alignment and contextual modeling with relatively low computational overhead. The current inference performance is partially limited by incomplete CUDA operator support for Mamba modules, which imposes some efficiency bottlenecks that could be further optimized in future implementations.

4.3.6. Qualitative Comparison

We conduct qualitative comparisons with CADFormer on RefSegRS, RRSIS-D, and RRSIS-HR. On RefSegRS (Figure 5), we mainly analyze the small-target setting. As shown in Columns 1–3, our method produces accurate masks for small and highly similar vehicle targets (e.g., bus/truck/trailer) in cluttered road scenes. This benefit is primarily attributed to Mamba, whose long-range sequence modeling supports coherent context aggregation over large-area imagery and improves small-object delineation.
We further conduct a size-based analysis on the RefSegRS test set. Specifically, all test samples are first sorted according to the pixel area of the target mask, and then divided into five groups with approximately balanced sample numbers. The five groups are defined as Tiny ( 0 area < 555 ), Small ( 555 area < 1770 ), Medium ( 1770 area < 4774 ), Large ( 4774 area < 18848 ), and Huge ( area 18848 ). As shown in Figure 6, MSMamba achieves consistently strong segmentation accuracy across different object sizes, demonstrating its robustness to scale variation. More importantly, our method shows clear advantages on small-scale targets. For the Tiny and Small groups, MSMamba outperforms the second-best method FIANet by 6.59% and 8.22% in mIoU, respectively. This indicates that MSMamba is particularly effective in segmenting small and visually ambiguous objects in cluttered remote sensing scenes.
We further focus on long and attribute-rich expressions on RRSIS-D and RRSIS-HR. As illustrated in Figure 7, our predictions on RRSIS-D remain instance-specific and better aligned with the referred region when the expression provides only weakly discriminative attribute cues. Figure 8 provides quantitative support for this observation by reporting mIoU across different expression-length bins. After splitting samples into four bins by expression length, our model maintains strong mIoU and shows a more significant advantage in the case of long texts, indicating that richer attribute cues in longer expressions are effectively utilized. Consistently, on RRSIS-HR (Figure 9, Columns 1 and 4), where descriptions are typically longer and contain multiple attributes and hierarchical modifiers, our method yields cleaner masks for small targets and maintains more regular geometric boundaries, with fewer fragments and reduced leakage. We attribute these improvements to fine-grained text decomposition in VTFB. WLSP explicitly extracts attribute-related tokens and constructs an attribute-aware semantic bridge, enabling the model to exploit attribute-level constraints more effectively as the description becomes longer and more complex.

4.4. Ablation Study

We conduct ablation experiments on a validation subset of RRSIS-D to evaluate the effectiveness of key components in our proposed network.

4.4.1. Evaluation of GL-CA and Bridge Feature Design

Table 6 analyzes the roles of the global alignment feature X G and the local alignment feature X L in GL-CA. The bridge feature X B is designed as an intermediate cue between X G and X L . When either X G or X L is removed, X B no longer serves its intended role, so we disable X B in the first three settings for consistency. Experiments show that enabling either X G or X L alone results in lower scores. This is because X G primarily provides coarse-grained intent guidance, while X L focuses on fine-grained local details. When both branches are used simultaneously, the mIoU increases by 0.44% and the oIoU increases by 1.22%. This indicates that the dual-branch structure exhibits complementarity in coarse global localization and local structure refinement. Building on this coarse-to-fine complementarity, inserting X B between X G and X L yields a further 0.91% gain in mIoU, increasing it to 66.93%.
Table 7 compares different ways to construct the bridge feature X B . We consider two prompt sources: an attribute prompt derived from attribute-level modifiers and an entity prompt taken from the entity token (as in FIANet). Using only the attribute prompt performs best and improves all metrics, with gains of +0.91% mIoU and +1.56% Pr@0.9. In contrast, the entity-level prompt alone shows limited effectiveness, as it brings almost no overall improvement and even leads to drops on Pr@0.8. Combining both prompt sources is also inferior to the attribute-only setting, indicating that the entity cue may dilute the contribution of attribute-level semantics. Therefore, we use the attribute-level prompt to construct X B by default. To further examine the importance of the extracted attribute words, we conduct an additional perturbation experiment by replacing the most relevant attribute words with the least relevant words in the expression when constructing the bridge feature. This perturbation leads to clear performance degradation, with mIoU, oIoU, Pr@0.8, and Pr@0.9 decreasing by 2.54%, 1.37%, 2.06%, and 1.26%, respectively. These results further verify that semantically relevant attribute-level cues are important for constructing an effective bridge feature.
Table 8 analyzes the position of the bridging feature X B in the concatenated sequence. We always place the visual feature V first to maintain visual information dominance in subsequent multimodal interactions. We also tested the effect of the order of semantic cues on model performance. As shown in the last row of the table, experiments demonstrated that the coarse-to-fine order X G X L performs better than the reverse order X L X G . Therefore, we used V X G X L as the default order and investigated the impact of the insertion position of X B . Placing X B after V yields poorer results because the bridging cues are introduced before a stable global reference frame is formed, which interferes with the early visual encoding process. Appending X B after X L also underperforms, since the local refinement has already been applied and the extra cue may disturb the learned fine structures. In contrast, inserting X B between X G and X L yields the best performance (66.93% mIoU/77.86% oIoU) by completing a coherent coarse-to-fine semantic pathway, where X B serves as a transition cue from global grounding to local refinement.

4.4.2. Evaluation of Multi-Scale Fusion Decoder

Table 9 compares four decoding configurations. Without any explicit multi-scale decoding module, the model already achieves a strong baseline (66.24% mIoU/77.70% oIoU), suggesting that the Mamba-based backbone captures certain cross-scale cues through long-range dependency modeling. Introducing a standard FPN [43] improves high-precision metrics (Pr@0.8 +0.69% and Pr@0.9 +0.17%) but degrades region-level quality (mIoU −0.63% and oIoU −0.48%), indicating that conventional top-down fusion may introduce scale interference or over-smoothing under extreme scale variation. We additionally evaluate a standard CIM [3] module as a direct replacement decoder. Compared with the baseline, CIM improves mIoU by 0.19% and Pr@0.8 by 0.75%, while oIoU decreases by 0.12% and Pr@0.9 drops by 0.35%. This suggests that CIM brings a solid gain in mIoU, which is beneficial for remote sensing targets, but it is less effective at improving fine-grained delineation under strict overlap criteria.
In contrast, our proposed MSFD achieves the best overall performance, improving mIoU by +0.69% and oIoU by +0.16% while maintaining Pr@0.8 at the best level. MSFD remains highly competitive on Pr@0.9, with only a small gap of 0.23% to the best Pr@0.9 result. These results demonstrate that combining MCP and SKSAG provides a more balanced and effective scale-aware fusion strategy for remote sensing scenarios.
Table 10 compares the proposed learnable gate in SKSAG with two simple fusion strategies. In the table, Add denotes directly adding the MCP feature and the corresponding BiFPN feature, while Concat denotes concatenating these two features along the channel dimension and then using a 1 × 1 convolution to restore the original channel number. Compared with the proposed SKSAG, the other two settings both lead to clear drops in mIoU and oIoU, indicating weaker segmentation performance.
The performance degradation mainly results from the limited adaptability of simple fusion operations. Direct addition treats the two feature sources equally and cannot adjust their contributions according to different spatial regions or feature channels. In the Concat setting, the two feature sources are concatenated along the channel dimension and then passed through a 1 × 1 convolution. Although this introduces learnable channel mixing, it still lacks an explicit gating mechanism to selectively emphasize useful global and local cues. In contrast, the proposed SKSAG uses a spatial-channel gate, which is both spatial-aware and channel-aware, enabling more adaptive fusion between MCP and BiFPN features and better multi-scale representation.

5. Conclusions

In this study, we explore MSMamba, a Mamba-driven framework for referring remote sensing image segmentation. It is designed for large-area remote sensing imagery, where models must handle efficient long-range context modeling, fine-grained grounding under visual ambiguity, and robust cross-scale fusion. Built on a VMamba encoder, MSMamba incorporates a Visual–Text Fine-grained Block (VTFB) to improve fine-grained vision–language alignment. VTFB decomposes referring expressions into attribute-level cues and leverages complementary global and local alignment signals to inject structured linguistic information through state space modeling. For decoding, we further introduce a multi-scale fusion decoder (MSFD), in which Multi-branch Cross-scale Parsing enhances cross-scale interaction and Selective Kernel Scale-Aware Gate enables scale-aware fusion to better preserve thin structures and boundary details.
Experiments on the RefSegRS, RRSIS-D, RISBench, and RRSIS-HR datasets demonstrate that our proposed method is highly competitive across various metrics. It shows a strong advantage, particularly at Pr@0.8 and Pr@0.9, and achieves a reliable improvement in mIoU, especially for thin structures, small targets, and long attribute-rich expressions. These results validate the effectiveness of combining state space modeling with explicit semantic injection for referring remote sensing image segmentation in large-area scenes with complex and attribute-rich descriptions. Further analysis across different expression lengths also shows that the proposed framework exhibits more evident advantages in long-text scenarios.
Despite these gains, precise boundary delineation for large objects remains challenging, and the visual encoder pre-trained on natural images may still suffer from a domain gap when transferred to remote sensing imagery. In future work, we will advance our framework along three directions. First, we will explore stronger language encoders and more explicit multi-constraint reasoning to better handle complex expressions and visually similar instances. Second, we will incorporate large vision–language models and remote-sensing-specific foundation models pre-trained on large-scale aerial data to reduce the domain gap and further improve boundary-sensitive segmentation. Third, we will investigate cross-dataset generalization and domain adaptation strategies to enhance the robustness of MSMamba across different remote sensing benchmarks, addressing variations in category definitions, expression styles, and annotation protocols.

Author Contributions

Conceptualization, T.Z., J.L. (Junbai Li) and Z.W.; Methodology, T.Z., J.L. (Junbai Li) and Z.W.; Software, J.L. (Junbai Li), Y.F. and Z.W.; Validation, T.Z., J.L. (Junbai Li) and Y.F.; Formal analysis, T.Z., J.L. (Junbai Li) and Z.W.; Investigation, T.Z., J.L. (Junbai Li) and Y.F.; Resources, T.Z. and J.L. (Jiangyun Li); Data curation, J.L. (Junbai Li) and Y.F.; Writing—original draft, J.L. (Junbai Li); Writing—review & editing, T.Z., Y.F., Z.W. and J.L. (Jiangyun Li); Visualization, J.L. (Junbai Li) and Y.F.; Supervision, T.Z., Z.W., L.L. and J.L. (Jiangyun Li); Project administration, T.Z., L.L. and J.L. (Jiangyun Li); Funding acquisition, T.Z. and J.L. (Jiangyun Li). All authors have read and agreed to the published version of the manuscript.

Funding

This work was supported by the Natural Science Foundation of China under Grant 42201386, in part by Fundamental Research Funds for the Central Universities of USTB: FRF-TP-24-060A.

Data Availability Statement

Datasets and codes are available at https://github.com/ljb1227zy/MSMamba (accessed on 8 June 2026).

Conflicts of Interest

The authors declare no conflicts of interest.

References

  1. Yuan, Z.; Mou, L.; Hua, Y.; Zhu, X.X. Rrsis: Referring remote sensing image segmentation. IEEE Trans. Geosci. Remote Sens. 2024, 62, 1–12. [Google Scholar] [CrossRef]
  2. Zhang, T.; Wen, Z.; Kong, B.; Liu, K.; Zhang, Y.; Zhuang, P.; Li, J. Referring Remote Sensing Image Segmentation via Multi-Scale Spatially-Guided Joint Prediction. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2025, 19, 2796–2811. [Google Scholar] [CrossRef]
  3. Liu, S.; Ma, Y.; Zhang, X.; Wang, H.; Ji, J.; Sun, X.; Ji, R. Rotated multi-scale interaction network for referring remote sensing image segmentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Seattle, WA, USA, 17–21 June 2024; pp. 26658–26668. [Google Scholar]
  4. Sun, Y.; Wang, D.; Li, L.; Ning, R.; Yu, S.; Gao, N. Application of remote sensing technology in water quality monitoring: From traditional approaches to artificial intelligence. Water Res. 2024, 267, 122546. [Google Scholar] [CrossRef] [PubMed]
  5. Yang, H.; Jiang, Z.; Zhang, Y.; Wu, Y.; Luo, H.; Zhang, P.; Wang, B. A high-resolution remote sensing land use/land cover classification method based on multi-level features adaptation of segment anything model. Int. J. Appl. Earth Obs. Geoinf. 2025, 141, 104659. [Google Scholar] [CrossRef]
  6. Harb, M.M.; Dell’Acqua, F. Remote sensing in multirisk assessment: Improving disaster preparedness. IEEE Geosci. Remote Sens. Mag. 2017, 5, 53–65. [Google Scholar] [CrossRef]
  7. Coutts, A.M.; Harris, R.J.; Phan, T.; Livesley, S.J.; Williams, N.S.; Tapper, N.J. Thermal infrared remote sensing of urban heat: Hotspots, vegetation, and an assessment of techniques for use in urban planning. Remote Sens. Environ. 2016, 186, 637–651. [Google Scholar] [CrossRef]
  8. Wang, H.; Zhuang, P.; Zhang, X.; Li, J. DBMGNet: A Dual-Branch Mamba-GCN Network for Hyperspectral Image Classification. IEEE Trans. Geosci. Remote Sens. 2025, 63, 4410517. [Google Scholar] [CrossRef]
  9. Zhuang, P.; Zhang, X.; Wang, H.; Zhang, T.; Liu, L.; Li, J. FAHM: Frequency-Aware Hierarchical Mamba for Hyperspectral Image Classification. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2025, 18, 6299–6313. [Google Scholar] [CrossRef]
  10. Li, J.; Wang, H.; Zhang, X.; Wang, J.; Zhang, T.; Zhuang, P. DVR: Towards Accurate Hyperspectral Image Classifier via Discrete Vector Representation. Remote Sens. 2025, 17, 351. [Google Scholar] [CrossRef]
  11. Li, J.; Wen, Z.; Zhang, Y.; Wang, W.; Cai, Y.; Zhang, T.; He, X.; Liu, J. Generalized referring expression segmentation driven by instance-oriented queries. Pattern Recognit. 2025, 172, 112524. [Google Scholar] [CrossRef]
  12. Hu, R.; Rohrbach, M.; Darrell, T. Segmentation from natural language expressions. In Proceedings of the European Conference on Computer Vision, Amsterdam, The Netherlands, 8–10 October 2016; pp. 108–124. [Google Scholar]
  13. Liu, C.; Lin, Z.; Shen, X.; Yang, J.; Lu, X.; Yuille, A. Recurrent multimodal interaction for referring image segmentation. In Proceedings of the IEEE International Conference on Computer Vision, Honolulu, HI, USA, 21–26 July 2017; pp. 1271–1280. [Google Scholar]
  14. Li, R.; Li, K.; Kuo, Y.C.; Shu, M.; Qi, X.; Shen, X.; Jia, J. Referring image segmentation via recurrent refinement networks. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Salt Lake City, UT, USA, 18–23 June 2018; pp. 5745–5753. [Google Scholar]
  15. Yu, L.; Lin, Z.; Shen, X.; Yang, J.; Lu, X.; Bansal, M.; Berg, T.L. Mattnet: Modular attention network for referring expression comprehension. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Salt Lake City, UT, USA, 18–23 June 2018; pp. 1307–1315. [Google Scholar]
  16. Shi, H.; Li, H.; Meng, F.; Wu, Q. Key-word-aware network for referring expression image segmentation. In Proceedings of the European Conference on Computer Vision (ECCV), Munich, Germany, 8–14 September 2018; pp. 38–54. [Google Scholar]
  17. Ye, L.; Rochan, M.; Liu, Z.; Wang, Y. Cross-modal self-attention network for referring image segmentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Long Beach, CA, USA, 15–20 July 2019; pp. 10502–10511. [Google Scholar]
  18. Margffoy-Tuay, E.; Pérez, J.C.; Botero, E.; Arbeláez, P. Dynamic multimodal instance segmentation guided by natural language queries. In Proceedings of the European Conference on Computer Vision (ECCV), Munich, Germany, 8–14 September 2018; pp. 630–645. [Google Scholar]
  19. Liu, S.; Hui, T.; Huang, S.; Wei, Y.; Li, B.; Li, G. Cross-modal progressive comprehension for referring segmentation. IEEE Trans. Pattern Anal. Mach. Intell. 2021, 44, 4761–4775. [Google Scholar] [CrossRef] [PubMed]
  20. Ding, H.; Liu, C.; Wang, S.; Jiang, X. Vision-language transformer and query generation for referring segmentation. In Proceedings of the IEEE/CVF International Conference on Computer Vision, Montreal, BC, Canada, 11–17 October 2021; pp. 16321–16330. [Google Scholar]
  21. Kim, N.; Kim, D.; Lan, C.; Zeng, W.; Kwak, S. Restr: Convolution-free referring image segmentation using transformers. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, New Orleans, LA, USA, 18–24 June 2022; pp. 18145–18154. [Google Scholar]
  22. Feng, G.; Hu, Z.; Zhang, L.; Lu, H. Encoder fusion network with co-attention embedding for referring image segmentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Montreal, BC, Canada, 11–17 October 2021; pp. 15506–15515. [Google Scholar]
  23. Yang, Z.; Wang, J.; Tang, Y.; Chen, K.; Zhao, H.; Torr, P.H. Lavt: Language-aware vision transformer for referring image segmentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, New Orleans, LA, USA, 18–24 June 2022; pp. 18155–18165. [Google Scholar]
  24. Ouyang, S.; Wang, H.; Xie, S.; Niu, Z.; Tong, R.; Chen, Y.W.; Lin, L. SLViT: Scale-Wise Language-Guided Vision Transformer for Referring Image Segmentation. In Proceedings of the IJCAI, Macao, China, 19–25 August 2023; pp. 1294–1302. [Google Scholar]
  25. Zhang, Z.; Zhu, Y.; Liu, J.; Liang, X.; Ke, W. Coupalign: Coupling word-pixel with sentence-mask alignments for referring image segmentation. Adv. Neural Inf. Process. Syst. 2022, 35, 14729–14742. [Google Scholar]
  26. Liu, S.A.; Zhang, Y.; Qiu, Z.; Xie, H.; Zhang, Y.; Yao, T. CARIS: Context-aware referring image segmentation. In Proceedings of the 31st ACM International Conference on Multimedia, Ottawa, ON, Canada, 29 October–3 November 2023; pp. 779–788. [Google Scholar]
  27. Chng, Y.X.; Zheng, H.; Han, Y.; Qiu, X.; Huang, G. Mask grounding for referring image segmentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Seattle, WA, USA, 16–22 June 2024; pp. 26573–26583. [Google Scholar]
  28. Hu, Y.; Wang, Q.; Shao, W.; Xie, E.; Li, Z.; Han, J.; Luo, P. Beyond one-to-one: Rethinking the referring image segmentation. In Proceedings of the IEEE/CVF International Conference on Computer Vision, Paris, France, 2–3 October 2023; pp. 4067–4077. [Google Scholar]
  29. Lei, S.; Xiao, X.; Zhang, T.; Li, H.-C.; Shi, Z.; Zhu, Q. Exploring fine-grained image-text alignment for referring remote sensing image segmentation. IEEE Trans. Geosci. Remote Sens. 2025, 63, 5604611. [Google Scholar] [CrossRef]
  30. Shi, L.; Zhang, J. Multimodal-aware fusion network for referring remote sensing image segmentation. IEEE Geosci. Remote Sens. Lett. 2025, 22, 8001805. [Google Scholar] [CrossRef]
  31. Dong, Z.; Sun, Y.; Liu, T.; Zuo, W.; Gu, Y. Cross-modal bidirectional interaction model for referring remote sensing image segmentation. arXiv 2024, arXiv:2410.08613. [Google Scholar]
  32. Liu, M.; Jiang, X.; Zhang, X. CADFormer: Fine-Grained Cross-modal Alignment and Decoding Transformer for Referring Remote Sensing Image Segmentation. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2025, 18, 14557–14569. [Google Scholar] [CrossRef]
  33. Gu, A.; Dao, T. Mamba: Linear-time sequence modeling with selective state spaces. In Proceedings of the First Conference on Language Modeling, Philadelphia, PA, USA, 29 March–9 July 2024. [Google Scholar]
  34. Zhu, L.; Liao, B.; Zhang, Q.; Wang, X.; Liu, W.; Wang, X. Vision mamba: Efficient visual representation learning with bidirectional state space model. arXiv 2024, arXiv:2401.09417. [Google Scholar] [CrossRef]
  35. Liu, Y.; Tian, Y.; Zhao, Y.; Yu, H.; Xie, L.; Wang, Y.; Ye, Q.; Jiao, J.; Liu, Y. Vmamba: Visual state space model. Adv. Neural Inf. Process. Syst. 2024, 37, 103031–103063. [Google Scholar]
  36. Zhao, S.; Chen, H.; Zhang, X.; Xiao, P.; Bai, L.; Ouyang, W. Rs-mamba for large remote sensing image dense prediction. IEEE Trans. Geosci. Remote Sens. 2024, 62, 5633314. [Google Scholar] [CrossRef]
  37. Ma, X.; Zhang, X.; Pun, M.O. Rs 3 mamba: Visual state space model for remote sensing image semantic segmentation. IEEE Geosci. Remote Sens. Lett. 2024, 21, 6011405. [Google Scholar] [CrossRef]
  38. Zhu, Q.; Fang, Y.; Cai, Y.; Chen, C.; Fan, L. Rethinking scanning strategies with vision mamba in semantic segmentation of remote sensing imagery: An experimental study. IEEE J. Sel. Top. Appl. Earth Obs. Remote Sens. 2024, 17, 18223–18234. [Google Scholar] [CrossRef]
  39. Altinok, D. Mastering spaCy: An End-to-End Practical Guide to Implementing NLP Applications Using the Python Ecosystem; Packt Publishing Ltd.: Birmingham, UK, 2021. [Google Scholar]
  40. Tan, M.; Pang, R.; Le, Q.V. Efficientdet: Scalable and efficient object detection. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition, Seattle, WA, USA, 13–19 June 2020; pp. 10781–10790. [Google Scholar]
  41. Devlin, J.; Chang, M.W.; Lee, K.; Toutanova, K. Bert: Pre-training of deep bidirectional transformers for language understanding. In Proceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Papers); Association for Computational Linguistics: Stroudsburg, PA, USA, 2019; pp. 4171–4186. [Google Scholar]
  42. Wolf, T.; Debut, L.; Sanh, V.; Chaumond, J.; Delangue, C.; Moi, A.; Cistac, P.; Rault, T.; Louf, R.; Funtowicz, M.; et al. Transformers: State-of-the-art natural language processing. In Proceedings of the 2020 Conference on Empirical Methods in Natural Language Processing: System Demonstrations, Online, 16–20 November 2020; pp. 38–45. [Google Scholar]
  43. Lin, T.Y.; Dollár, P.; Girshick, R.; He, K.; Hariharan, B.; Belongie, S. Feature pyramid networks for object detection. In Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition, Honolulu, HI, USA, 21–26 July 2017; pp. 2117–2125. [Google Scholar]
Figure 1. Comparison of multimodal interaction paradigms for referring remote sensing image segmentation: (a) self-attention over concatenated visual and text tokens, (b) cross-attention using pooled text queries, and (c) Mamba-based selective scanning with linear complexity for context-aware multi-scale alignment.
Figure 1. Comparison of multimodal interaction paradigms for referring remote sensing image segmentation: (a) self-attention over concatenated visual and text tokens, (b) cross-attention using pooled text queries, and (c) Mamba-based selective scanning with linear complexity for context-aware multi-scale alignment.
Remotesensing 18 01949 g001
Figure 2. Overview of MSMamba for referring remote sensing image segmentation. A VMamba backbone with Visual State Space (VSS) blocks and interleaved Visual–Text Fine-grained Block (VTFB) modules extracts multimodally enhanced features from the input image and text. The Word-Level Semantic Processor (WLSP) in VTFB decomposes word-level semantics, and the Global–Local Cross-Modal Alignment (GL-CA) module performs dual-scale text-image alignment. The aligned multimodal features are fused with visual features via 2D Selective Scan (SS2D). A multi-scale fusion decoder (MSFD) then aggregates multi-stage features to predict the referred-object mask.
Figure 2. Overview of MSMamba for referring remote sensing image segmentation. A VMamba backbone with Visual State Space (VSS) blocks and interleaved Visual–Text Fine-grained Block (VTFB) modules extracts multimodally enhanced features from the input image and text. The Word-Level Semantic Processor (WLSP) in VTFB decomposes word-level semantics, and the Global–Local Cross-Modal Alignment (GL-CA) module performs dual-scale text-image alignment. The aligned multimodal features are fused with visual features via 2D Selective Scan (SS2D). A multi-scale fusion decoder (MSFD) then aggregates multi-stage features to predict the referred-object mask.
Remotesensing 18 01949 g002
Figure 3. Architecture of the proposed Visual–Text Fine-grained Block, comprising a Word-Level Semantic Processor (WLSP), a Global–Local Cross-Modal Alignment (GL-CA) module, and an SS2D block for fine-grained vision–language interaction.
Figure 3. Architecture of the proposed Visual–Text Fine-grained Block, comprising a Word-Level Semantic Processor (WLSP), a Global–Local Cross-Modal Alignment (GL-CA) module, and an SS2D block for fine-grained vision–language interaction.
Remotesensing 18 01949 g003
Figure 4. Illustration of the proposed multi-scale fusion decoder (MSFD), consisting of a Multi-branch Cross-scale Parsing (MCP) and a Selective Kernel Scale-Aware Gate (SKSAG) for scale-aware feature fusion and segmentation.
Figure 4. Illustration of the proposed multi-scale fusion decoder (MSFD), consisting of a Multi-branch Cross-scale Parsing (MCP) and a Selective Kernel Scale-Aware Gate (SKSAG) for scale-aware feature fusion and segmentation.
Remotesensing 18 01949 g004
Figure 5. Qualitative comparisons between MSMamba and previous state-of-the-art methods on the RefSegRS dataset. The yellow dashed boxes in the figures highlight false positive regions that do not belong to the target.
Figure 5. Qualitative comparisons between MSMamba and previous state-of-the-art methods on the RefSegRS dataset. The yellow dashed boxes in the figures highlight false positive regions that do not belong to the target.
Remotesensing 18 01949 g005
Figure 6. mIoU trends of different methods on the RefSegRS test set grouped by target mask size. Targets are divided into five groups according to pixel area.
Figure 6. mIoU trends of different methods on the RefSegRS test set grouped by target mask size. Targets are divided into five groups according to pixel area.
Remotesensing 18 01949 g006
Figure 7. Qualitative comparisons between MSMamba and previous state-of-the-art methods on the RRSIS-D dataset.
Figure 7. Qualitative comparisons between MSMamba and previous state-of-the-art methods on the RRSIS-D dataset.
Remotesensing 18 01949 g007
Figure 8. mIoU trends with respect to expression length on the RRSIS-D dataset, where expressions are grouped into four length bins.
Figure 8. mIoU trends with respect to expression length on the RRSIS-D dataset, where expressions are grouped into four length bins.
Remotesensing 18 01949 g008
Figure 9. Qualitative comparisons between MSMamba and previous state-of-the-art methods on the RRSIS-HR dataset. The yellow dashed boxes in the figures highlight false positive regions that do not belong to the target.
Figure 9. Qualitative comparisons between MSMamba and previous state-of-the-art methods on the RRSIS-HR dataset. The yellow dashed boxes in the figures highlight false positive regions that do not belong to the target.
Remotesensing 18 01949 g009
Table 1. Quantitative comparison with state-of-the-art methods on the RefSegRS dataset. R-101 and Swin-B denote ResNet-101 and Swin Transformer-Base visual backbones, respectively. All metrics are reported in %, and the best result for each column is highlighted in bold. Methods marked with are directly reported from [31].
Table 1. Quantitative comparison with state-of-the-art methods on the RefSegRS dataset. R-101 and Swin-B denote ResNet-101 and Swin Transformer-Base visual backbones, respectively. All metrics are reported in %, and the best result for each column is highlighted in bold. Methods marked with are directly reported from [31].
MethodVisual EncoderText EncoderPr@0.5Pr@0.6Pr@0.7Pr@0.8Pr@0.9oIoUmIoU
Val Test Val Test Val Test Val Test Val Test Val Test Val Test
BRINet R-101LSTM36.8620.7235.5314.2619.939.8710.662.982.841.1461.5958.2238.7331.51
LSCM R-101LSTM56.8231.5441.2420.4121.859.5112.115.292.510.8462.8261.2740.5935.54
RRN R-101LSTM55.4330.2642.9823.0123.1114.8713.727.172.640.9869.2465.0650.8141.88
ETRIS R-101CLIP54.9935.7735.0323.0025.0613.9812.536.441.621.1072.8965.9654.0343.11
CRIS R-101CLIP53.1335.7736.1924.1124.3614.3611.836.382.551.2172.1465.8753.7443.26
CrossVLT Swin-BBERT67.5241.9443.8525.4325.9915.1914.623.711.871.7676.1269.7355.2742.81
LAVT Swin-BBERT80.9751.8458.7030.2731.0917.3415.559.524.642.0978.5071.8661.5347.40
RIS-DMMI Swin-BBERT86.1763.8974.7144.3038.0519.8118.106.493.251.0074.0268.5865.7252.15
MAFNSwin-BBERT93.7470.7286.5455.3771.0031.3728.7711.457.422.3180.1772.0372.8857.56
LGCESwin-BBERT92.5874.7990.4962.3080.0538.6941.0716.6812.764.7385.8077.2875.6760.10
CADFormerSwin-BBERT89.7975.3481.6763.1862.6538.9723.4315.635.572.9779.1174.0870.4660.88
RMSINSwin-BBERT90.7277.4486.3165.4471.9342.4329.7017.397.193.0879.3074.5372.2662.04
FIANetSwin-BBERT95.8282.6192.3473.7587.2454.7154.5225.2110.674.6283.9476.6278.2866.12
MSMamba (ours)VMambaBERT95.3683.6594.9078.4890.4968.7483.0650.7445.0118.6686.8579.4585.1172.77
Note: The gray background indicates the proposed method. Bold values indicate the best result in each column.
Table 2. Comparison with state-of-the-art methods on the RRSIS-D dataset. R-101 and Swin-B denote ResNet-101 and Swin Transformer-Base visual backbones, respectively. All metrics are reported in %. The best result in each column is highlighted in bold. Methods marked with use the scores reported in [31]. Methods marked with * use the scores reported in the original paper [30], since our re-implementations under the common setting obtain slightly lower performance.
Table 2. Comparison with state-of-the-art methods on the RRSIS-D dataset. R-101 and Swin-B denote ResNet-101 and Swin Transformer-Base visual backbones, respectively. All metrics are reported in %. The best result in each column is highlighted in bold. Methods marked with use the scores reported in [31]. Methods marked with * use the scores reported in the original paper [30], since our re-implementations under the common setting obtain slightly lower performance.
MethodVisual EncoderText EncoderPr@0.5Pr@0.6Pr@0.7Pr@0.8Pr@0.9oIoUmIoU
Val Test Val Test Val Test Val Test Val Test Val Test Val Test
RRN R-101LSTM51.0951.0742.4742.1133.0432.7720.8021.576.146.3766.5366.4346.0645.64
BRINet R-101LSTM58.7956.9049.5448.7739.6538.6128.2127.039.198.9370.7369.6851.4149.45
LSCM R-101LSTM57.1256.0248.0446.2537.8737.7026.3525.287.937.8669.2869.1050.3649.92
CRIS R-101CLIP56.4454.8447.8746.7739.7738.0629.3128.1511.8411.5270.9870.4650.7549.69
ETRIS R-101CLIP62.1061.0753.7350.9943.1240.9430.7929.3012.9011.4372.7571.0655.2154.21
LAVT Swin-BBERT65.2363.9858.7957.5750.2949.3040.1138.0623.0522.2976.2776.1657.7256.82
CrossVLT Swin-BBERT67.0766.4259.5459.4150.8049.7640.5738.6723.5123.3076.2575.4859.7858.48
RIS-DMMI Swin-BBERT70.4068.7463.0560.9654.1450.3341.9538.3823.8521.6377.0176.2061.7060.25
LGCESwin-BBERT71.3269.6964.5463.4955.0653.4943.5141.1125.4023.9677.4676.8462.2960.60
FIANetSwin-BBERT73.3373.4366.2166.9655.4654.6442.4741.2023.6823.0177.0476.1663.3562.99
RMSINSwin-BBERT73.3972.1666.2665.9656.8454.7543.4541.5424.6023.9677.0376.3264.2863.06
CADFormerSwin-BBERT75.5774.7267.8767.7455.9256.1043.3941.7124.3123.6777.4777.2465.1264.23
MAFN *Swin-BBERT76.3275.2769.3168.1458.3356.7944.5443.4924.7123.7678.3377.4166.0364.76
MSMamba (ours)VMambaBERT77.2477.6871.7271.7659.9460.0146.5545.1628.1626.2677.8677.5466.9366.22
Note: The gray background indicates the proposed method, and bold values indicate the best result in each column.
Table 3. Quantitative comparison with state-of-the-art methods on the RISBench dataset. R-101 and Swin-B denote ResNet-101 and Swin Transformer-Base visual backbones, respectively. All metrics are reported in %, and the best result for each column is highlighted in bold. Methods marked with are directly reported from [31], where the RISBench benchmark was introduced.
Table 3. Quantitative comparison with state-of-the-art methods on the RISBench dataset. R-101 and Swin-B denote ResNet-101 and Swin Transformer-Base visual backbones, respectively. All metrics are reported in %, and the best result for each column is highlighted in bold. Methods marked with are directly reported from [31], where the RISBench benchmark was introduced.
MethodVisual EncoderText EncoderPr@0.5Pr@0.6Pr@0.7Pr@0.8Pr@0.9oIoUmIoU
Val Test Val Test Val Test Val Test Val Test Val Test Val Test
BRINet R-101LSTM52.1152.8745.1745.3937.9838.6430.8830.7910.2811.8646.2748.7341.5442.91
RRN R-101LSTM54.6255.0446.8847.3139.5739.8632.6432.5811.5713.2447.2849.6742.6543.18
LSCM R-101LSTM55.8755.2647.2447.1440.2240.1033.5533.2912.7813.9147.9950.0843.2143.69
ETRIS R-101CLIP59.8760.9849.9151.8835.8839.8720.1024.498.5411.1864.0967.6151.1353.06
CRIS R-101CLIP63.4263.6754.3255.7341.1544.4224.6628.8010.2713.2766.2669.1153.6455.18
LAVT Swin-BBERT68.2769.4062.7163.6654.4656.1043.1344.9521.6125.2169.3974.1560.4561.93
CrossVLT Swin-BBERT70.0570.6264.2965.0556.9757.4044.4945.8021.4726.1069.7774.3361.5462.84
LGCESwin-BBERT71.0171.4565.6266.3058.6658.7747.0547.4324.4127.8469.3973.5062.8663.67
RIS-DMMI Swin-BBERT71.2772.0566.0266.4858.2259.0745.5747.1622.4326.5770.5874.8262.6263.93
FIANetSwin-BBERT75.7075.5170.8970.7364.3763.5953.2252.5230.1231.9669.8674.3067.1967.44
CADFormerSwin-BBERT75.9476.2770.9071.3564.1764.2152.6252.9129.0731.5970.2374.3466.9667.80
RMSINSwin-BBERT75.8676.3770.8871.1764.3264.1753.3453.2230.4432.5070.8175.5167.4468.32
MAFNSwin-BBERT76.8776.9872.3272.4665.5765.7354.4754.7731.1133.0970.9074.9067.9568.79
MSMamba (ours)VMambaBERT77.3477.5673.3073.3868.0067.6059.4858.7840.1640.5371.9375.2969.6670.22
Note: The gray background indicates the proposed method, and bold values indicate the best result in each column.
Table 4. Quantitative comparison on the RRSIS-HR dataset. Swin-B denotes the Swin Transformer-Base visual backbone. All metrics are reported in %, and the best result in each column is highlighted in bold. Methods marked with are directly reported from [32], where the RRSIS-HR benchmark was introduced.
Table 4. Quantitative comparison on the RRSIS-HR dataset. Swin-B denotes the Swin Transformer-Base visual backbone. All metrics are reported in %, and the best result in each column is highlighted in bold. Methods marked with are directly reported from [32], where the RRSIS-HR benchmark was introduced.
MethodVisual EncoderText EncoderPr@0.5Pr@0.6Pr@0.7Pr@0.8Pr@0.9oIoUmIoU
LAVT Swin-BBERT23.1120.0813.645.300.3827.9422.78
FIANet Swin-BBERT31.0627.6522.3515.151.8928.8927.13
LGCE Swin-BBERT35.9831.0623.8615.153.7938.2033.48
RMSIN Swin-BBERT50.0046.9739.7729.926.4445.9743.70
MAFNSwin-BBERT46.2144.3240.5332.9517.0546.1844.34
CADFormerSwin-BBERT63.2657.9546.2134.099.0953.6454.88
MSMamba (ours)VMambaBERT66.6761.7457.5843.1820.8359.0557.90
Note: The gray background indicates the proposed method, and bold values indicate the best result in each column.
Table 5. Comparison of model complexity, GPU memory consumption, and inference speed.
Table 5. Comparison of model complexity, GPU memory consumption, and inference speed.
MethodParams
(M)
FLOPs
(G)
GPU Memory
(GB)
Inference Time
(ms)
RMSIN240.04433.0214.0837.0
FIANet256.17435.8712.9744.7
MAFN350.06450.6622.7485.4
CADFormer359.25466.2817.8141.8
MSMamba (Ours)264.77416.8019.5459.1
Note: Bold values indicate the best result in each column.
Table 6. Ablation study of GL-CA, analyzing the effects of global alignment and local alignment.
Table 6. Ablation study of GL-CA, analyzing the effects of global alignment and local alignment.
GlobalLocalBridge FeaturemIoUoIoU
×without65.7876.67
×without65.5876.56
without66.0277.78
with66.9377.86
Note: The gray background indicates the proposed setting, and bold values indicate the best result in each column. ✓ and × denote whether the corresponding component is used or not, respectively.
Table 7. Effect of different prompt sources for constructing the bridge feature X B .
Table 7. Effect of different prompt sources for constructing the bridge feature X B .
Attribute
Level
Entity
Level
  mIoU oIoU Pr@0.8 Pr@0.9
××66.0277.7845.8026.60
×66.9377.8646.5528.16
×66.0677.8445.3427.07
66.2377.2646.0926.67
Note: The gray background indicates the proposed setting, and bold values indicate the best result in each column. ✓and × denote whether the corresponding prompt source is used or not, respectively.
Table 8. Ablation study on the insertion position of the bridge feature X B within the WLSP concatenation order.
Table 8. Ablation study on the insertion position of the bridge feature X B within the WLSP concatenation order.
PositionMetrics
1 2 3 4 mIoU oIoU
V X B X G X L 66.2177.44
V X G X B X L 66.9377.86
V X G X L X B 65.4876.71
V X L X B X G 65.4677.58
Note: The gray background indicates the proposed setting, and bold values indicate the best result in each column.
Table 9. Ablation study on different decoding configurations.
Table 9. Ablation study on different decoding configurations.
ConfigmIoUoIoUPr@0.8Pr@0.9
NONE66.2477.7045.8028.22
FPN65.6177.2246.4928.39
CIM66.4377.5846.5527.87
MSFD (Ours)66.9377.8646.5528.16
Note: The gray background indicates the proposed setting, and bold values indicate the best result in each column.
Table 10. Ablation study on different fusion strategies in SKSAG.
Table 10. Ablation study on different fusion strategies in SKSAG.
Fusion StrategyPr@0.8Pr@0.9mIoUoIoU
Add45.8627.3665.2476.21
Concat45.3427.5965.1476.16
SKSAG (Ours)46.5528.1666.9377.86
Note: The gray background indicates the proposed setting, and bold values indicate the best result in each column.
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content.

Share and Cite

MDPI and ACS Style

Zhang, T.; Li, J.; Feng, Y.; Wen, Z.; Liu, L.; Li, J. MSMamba: A Multi-Semantic Mamba Framework for Referring Remote Sensing Image Segmentation. Remote Sens. 2026, 18, 1949. https://doi.org/10.3390/rs18121949

AMA Style

Zhang T, Li J, Feng Y, Wen Z, Liu L, Li J. MSMamba: A Multi-Semantic Mamba Framework for Referring Remote Sensing Image Segmentation. Remote Sensing. 2026; 18(12):1949. https://doi.org/10.3390/rs18121949

Chicago/Turabian Style

Zhang, Tianxiang, Junbai Li, Yanqiang Feng, Zhaokun Wen, Li Liu, and Jiangyun Li. 2026. "MSMamba: A Multi-Semantic Mamba Framework for Referring Remote Sensing Image Segmentation" Remote Sensing 18, no. 12: 1949. https://doi.org/10.3390/rs18121949

APA Style

Zhang, T., Li, J., Feng, Y., Wen, Z., Liu, L., & Li, J. (2026). MSMamba: A Multi-Semantic Mamba Framework for Referring Remote Sensing Image Segmentation. Remote Sensing, 18(12), 1949. https://doi.org/10.3390/rs18121949

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop