Papers
Topics
Authors
Recent
Search
2000 character limit reached

Semantic-Geometric Dual Compression: Training-Free Visual Token Reduction for Ultra-High-Resolution Remote Sensing Understanding

Published 13 Apr 2026 in cs.CV and cs.AI | (2604.11122v1)

Abstract: Multimodal LLMs (MLLMs) have demonstrated immense potential in Earth observation. However, the massive visual tokens generated when processing Ultra-High-Resolution (UHR) imagery introduce prohibitive computational overhead, severely bottlenecking their inference efficiency. Existing visual token compression methods predominantly adopt static and uniform compression strategies, neglecting the inherent "Semantic-Geometric Duality" in remote sensing interpretation tasks. Specifically, object semantic tasks focus on the abstract semantics of objects and benefit from aggressive background pruning, whereas scene geometric tasks critically rely on the integrity of spatial topology. To address this challenge, we propose DualComp, a task-adaptive dual-stream token compression framework. Dynamically guided by a lightweight pre-trained router, DualComp decouples feature processing into two dedicated pathways. In the object semantic stream, the Spatially-Contiguous Semantic Aggregator (SCSA) utilizes size-adaptive clustering to aggregates redundant background while protecting small object. In the scene geometric stream, the Instruction-Guided Structure Recoverer (IGSR) introduces a greedy path-tracing topology completion mechanism to reconstruct spatial skeletons. Experiments on the UHR remote sensing benchmark XLRS-Bench demonstrate that DualComp accomplishes high-fidelity remote sensing interpretation at an exceptionally low computational cost, achieving simultaneous improvements in both efficiency and accuracy.

Summary

  • The paper proposes DualComp, a training-free dual-stream pipeline that adaptively compresses tokens to preserve both semantic details and geometric structures in ultra-high-resolution remote sensing images.
  • It employs a duality-aware routing mechanism to assign token budgets for semantic and geometric streams, achieving up to a 42× token reduction while maintaining or boosting performance.
  • Empirical evaluations demonstrate improved inference throughput and enhanced task accuracy in geometry-sensitive and semantic tasks, validating its effective plug-and-play design for MLLMs.

Semantic-Geometric Dual Compression for Ultra-High-Resolution Remote Sensing in MLLMs

Motivation and Problem Analysis

The proliferation of ultra-high-resolution (UHR) remote sensing imagery introduces significant computational bottlenecks in Multimodal LLMs (MLLMs) due to the explosion in visual token counts during patch-based feature encoding and AnyRes-style multi-cropping. Standard visual token compression techniques apply static, uniform strategies, ignoring the intrinsic dichotomy in remote sensing reasoning: object semantic tasks prioritize abstract semantics and favor aggressive denoising, while scene geometric tasks require retention of spatial topology for structural fidelity. The lack of task-adaptive token selection is a substantial limitation in scaling MLLMs to UHR imagery.

A pilot study demonstrates a task-dependent duality in token utility: increased compression benefits semantic-dominant subtasks, but is detrimental to geometry-dependent ones, revealing a tension between background redundancy and geometric evidence as a function of the reasoning target. Figure 1

Figure 1: Ablation under varying compression ratios demonstrates that semantic tasks benefit from background token pruning, whereas geometry-centric tasks require context preservation.

DualComp: Task-Adaptive Dual-Stream Token Compression

To address the semantic-geometric duality, the paper introduces DualComp—a plug-and-play, training-free dual-stream visual token reduction pipeline. DualComp leverages an offline-trained, lightweight router driven by textual instruction to dynamically schedule compression aggressiveness and semantic-vs-geometric token allocation. This design fundamentally moves away from passive, task-agnostic token elimination to intent-aware evidence scheduling. Figure 2

Figure 2: DualComp adaptively and efficiently manages semantic and geometric evidence via dual-stream compression, achieving robustness under high compression.

Duality-Aware Routing and Streamed Execution

DualComp's router parses task intent to infer (1) an overall retention strength ρ\rho and (2) a duality allocation factor λ\lambda, which parametrically controls the ratio of tokens assigned to semantic and geometric streams. The router's outputs govern token budgets for each pathway, steering the compression process end-to-end. Figure 3

Figure 3: One-pass workflow: instruction-conditioned router outputs (λ,ρ)(\lambda,\rho), dynamically controlling SCSA (semantic) and IGSR (geometric) reduction and fusion.

Semantic Stream: Spatially-Contiguous Semantic Aggregator (SCSA)

SCSA targets background redundancy by spatially aggregating homogeneous background patches while ensuring preservation of small, semantically relevant objects. SCSA employs τ(λ)\tau(\lambda)-adaptive clustering using cosine similarity of CLIP visual embeddings, coupled with cluster scoring via [CLS]-to-patch attention heads from frozen ViTs. Size-adaptive selection strategies ensure retention of fine-grained tokens for small clusters and summarized tokens for larger regions, tightly governed by λ\lambda.

Geometric Stream: Instruction-Guided Structure Recoverer (IGSR)

IGSR focuses on restoring and preserving topology and spatial relationships critical for geometric reasoning. This is achieved through:

  1. Local-difference anchor extraction, emphasizing high-variation features for geometric saliency.
  2. Text-aware modulation based on image-text similarity, ensuring alignment with user intent.
  3. Parallel greedy path tracing for explicit topology completion, recovering spatial continuity otherwise lost in heavy compression regimes. Figure 4

    Figure 4: SCSA (a) performs semantic-aware background aggregation; IGSR (b) restores spatial topology via instruction-guided, greedy path tracing.

Dual-Stream Fusion

After separate reductions, semantic and geometric tokens are fused via λ\lambda-weighted concatenation, ensuring that task intent is reflected both in token composition and representation magnitude. IGSR ensures connected positional order for the geometric stream, enabling native LLM positional encodings to leverage local connectivity without architectural changes.

Empirical Evaluation

Evaluated on XLRS-Bench, DualComp achieves superior average accuracy (53.10%) compared to both task-agnostic and remote-sensing-specific compression baselines, outperforming GeoLLaVA-8K and all major token-pruning methods under a compression ratio of 42×42\times (reducing average token count from 14k to 6.4k). The most pronounced gains occur in geometry-sensitive tasks (e.g., Route Planning: 66% to 72%, Land Use Classification: 49% to 53%), confirming architectural suitability for topology-dependent reasoning. Semantic tasks also see competitive or improved performance, notably in counting (38% to 45%) and object color identification.

DualComp delivers the best inference throughput (3.87 s/image), effectively halving the TFLOP requirements of the LLM without numerical degradation, a pronounced advantage over approaches like VisionZip and FastV. The ablation analysis substantiates the necessity of both streams: SCSA-only and IGSR-only configurations show tangible degradation, underscoring the importance of dual evidence preservation for broad UHR task coverage.

DualComp's task-adaptive design is further validated by its transfer to general-purpose models such as Qwen2.5-7B, where it maintains or marginally outperforms existing advanced compression techniques at equal or higher compression levels, thus confirming generality and plug-in utility for open vocabulary MLLMs.

Theoretical and Practical Implications

The work establishes that static token reduction paradigms are fundamentally mismatched with the heterogeneous demands of UHR remote sensing, and that procedure-level adaptation guided by instruction-conditioned routing is critical for robust and efficient downstream performance. By decoupling semantic and geometric evidence pathways, DualComp provides a blueprint for structured, dynamic token selection aligned with task intent, eliminating the need for expensive end-to-end retraining.

Practically, DualComp enables real-time or near-real-time inference for high-throughput or latency-sensitive remote sensing applications without sacrificing reasoning fidelity, even at aggressive compression ratios. It opens the path for integration in cloud-based and edge AI deployments where memory and compute are scarce.

Theoretically, the manner in which DualComp formalizes task-conditioned token scheduling generalizes beyond remote sensing: semantic-geometric duality, or analogous decompositions, likely applies in other vision-language domains where both fine-grained categorization and spatial reasoning are concurrent demands.

Conclusion

This work offers a rigorous technical advance for efficient UHR remote sensing understanding with MLLMs, demonstrating that training-free, dual-stream, intent-driven compression can improve both computational economy and reasoning performance. The explicit modeling and preservation of semantic and geometric evidence, along with instruction-informed token allocation, are the cornerstones of DualComp. The framework is modular, generalizes across backbones, and sets a reference architecture for future research in task-adaptive multimodal compression (2604.11122).

Paper to Video (Beta)

No one has generated a video about this paper yet.

Whiteboard

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

Open Problems

We haven't generated a list of open problems mentioned in this paper yet.

Collections

Sign up for free to add this paper to one or more collections.