Skip to content
RobotWorld
Back to Papers

PAPER DEEP DIVE

Spatial IntelligencePaper空间智能

ConsiSpace: Learning Geometric Consistency Matters for Video Spatial Reasoning

Video spatial reasoning is essential for navigation-oriented perception and long-video question answering, where models must infer spatial relations across long horizons under changing viewpoints. However, existing multimodal large language models (MLLMs) remain largely semantic-centric, and often fail to reliably aggregate consistent spatial evidence from redundant video observations, leading to inefficient or unstable reasoning. To address these issues, we propose ConsiSpace, a geometry-consistency-aware framework for geometry-sensitive video spatial reasoning that turns spatial consistency into both an evidence organization principle and an explicit post-SFT learning signal. We build a geometry-consistent memory (GCM) including implicit evidence tokens and explicit geometric cues, and leverage efficient organization strategies to compactly preserve task-related spatial evidence. Furthermore, we utilize unified consistency self-supervised reinforcement learning (UC-SSRL) after supervised fine-tuning to improve cross-view stability, with answer-, metric-, and topology-consistency rewards. Extensive experiments on three spatial-reasoning benchmarks, VSI-Bench, OSI-Bench, and MMSI-Video-Bench, show consistent gains, improving the average score by 12.6 points over the strongest baselines.

Ting Huang, Zhenyu Zhang, Wenyuan Huang, Jian Yang, Hao TangJuly 20, 20265 min read
中文

ConsiSpace: Learning Geometric Consistency Matters for Video Spatial Reasoning

Paper: ConsiSpace: Learning Geometric Consistency Matters for Video Spatial Reasoning

Authors: Ting Huang, Zhenyu Zhang, Wenyuan Huang, Jian Yang, Hao Tang

Affiliation: Nanjing University, Peking University, Beijing Academy of AI

Link: arXiv:2607.17599 | Project: ConsiSpace


One-Sentence Summary

ConsiSpace is a geometry-consistency-aware framework for video spatial reasoning that organizes implicit evidence tokens and explicit geometric cues through Geometry-Consistent Memory (GCM), and optimizes cross-view stability via Unified Consistency Self-Supervised Reinforcement Learning (UC-SSRL) after SFT, improving average score by 12.6 points on VSI-Bench, OSI-Bench, and MMSI-Video-Bench.


Background and Motivation

Video spatial reasoning is essential for navigation perception and long-video QA — models must infer spatial relations across long horizons under changing viewpoints. Existing MLLMs are semantics-centric, failing to reliably aggregate consistent spatial evidence from redundant video observations. Prior methods (SpaceR, ViLaSR, Cambrian-S) improve through spatial data and training objectives but lack a unified framework treating geometric consistency as both an evidence organization principle and an explicit learning signal.

ConsiSpace Overview

Figure 1: ConsiSpace framework overview. Organizes visual-spatial tokens and geometric cues via GCM and UC-SSRL.


Method Details

1. Feature Extraction

Built on Qwen3-VL-8B with frozen SigLIP2 as visual encoder and frozen VGGT as geometry encoder. Each frame extracts visual tokens $X_t$, spatial tokens $S_t$, camera pose $T_t$, and depth map $D_t$.

2. Geometry-Consistent Memory (GCM)

GCM has two banks: Implicit Evidence Memory $\mathcal{M}_{\text{imp}}$ stores per-frame evidence tokens; Explicit Spatial Memory $\mathcal{M}_{\text{exp}}$ stores camera poses and depth cues. Evidence entries:

$$ e_t = \text{Pack}(X_t, S_t), \qquad g_t = (T_t, D_t) $$

Geometry-gated writing: Compute inter-frame motion and viewpoint changes, write only when new spatial evidence appears:

$$ \Delta p_t = \|p_t - p_{t-1}\|_2, \quad \Delta\theta_t = \angle(v_t, v_{t-1}) $$ $$ \text{write}(t) = \mathbb{I}\left[\Delta p_t > \tau_p \lor \Delta\theta_t > \tau_\theta\right] $$

Geometry-consistent fusion: Define geometric neighborhood $\mathcal{N}(t) = \{j: \|p_t - p_j\| < r, \angle(v_t, v_j) < \theta\}$, fuse into semantically most similar neighbor:

$$ j^\star = \arg\max_{j \in \mathcal{N}(t)} \cos(k_t, k_j), \qquad k_t = W_k e_t $$ GCM Lifecycle

Figure 2: GCM evidence lifecycle. Geometry-gated writing → consistent fusion → filtered retrieval.

Geometry-filtered retrieval: Coarse-to-fine — retrieve candidate chunks by semantic relevance, then refine frame-level selection with geometry term:

$$ s_f(i) = \alpha \cos(q_e, k_i^f) + \beta \cos(Q_{\text{topo}}, e_i^{\text{dir}}) $$

Final context concatenates query, summary, evidence, and geometric cues:

$$ Z = \text{Concat}\left([\text{TOK}(q)],\, z_{\text{topo}},\, z_{\text{metric}},\, \{z_i\}_{i \in F_{\text{topk}}},\, \{g_i\}_{i \in F_{\text{topk}}}\right) $$

3. Unified Consistency Self-Supervised RL (UC-SSRL)

Construct two-view observations $o_i$ and $o_j$ for the same question, with three self-supervised rewards:

Answer consistency (KL divergence penalty):

$$ R_{\text{KL}} = -\alpha\, \text{KL}(\pi_i \| \pi_j) $$

Metric consistency (distance estimate agreement):

$$ R_{\text{metric}} = -\eta\, |\hat{d}_i - \hat{d}_j| $$

Topological consistency (symmetric KL of relational distributions):

$$ R_{\text{topo}} = -\beta\left(\text{KL}(P_i \| P_j) + \text{KL}(P_j \| P_i)\right) $$

Unified reward $R = R_{\text{KL}} + R_{\text{metric}} + R_{\text{topo}}$ optimized via policy gradient, updating only LoRA parameters.

flowchart TD
    A["Input Video Frames"] --> B["Feature Extraction
SigLIP2(visual)+VGGT(geometry)"] B --> C["Geometry-Consistent Memory GCM"] C --> D["Geometry-Gated Writing
Δp>τp ∨ Δθ>τθ"] D --> E["Geometry-Consistent Fusion
Max semantic similarity in neighborhood"] E --> F["Geometry-Filtered Retrieval
Coarse-to-fine: semantic+geometry scoring"] F --> G["Context Concatenation
Query+summary+evidence+geometry"] G --> H["Video Language Model
Qwen3-VL-8B+LoRA"] H --> I["SFT Initialization"] I --> J["UC-SSRL Consistency Optimization
Answer+metric+topology triple rewards"] J --> K["Cross-view stable spatial reasoning output"] style C fill:#e1f5fe style J fill:#fff3e0 style K fill:#e8f5e9

Experimental Results

VSI-Bench Indoor Spatial Reasoning

Table 1: VSI-Bench results (Avg. is overall mean)
MethodTypeAvg.
GPT-4oAPI34.0
Gemini-1.5 ProAPI45.4
Qwen3-VL-8BOpen-source~48
Spatial-MLLMSpecialized~52
VLM-3RSpecialized~58
ConsiSpace (UC-SSRL)Ours~65

MMSI-Video-Bench Multi-Video Spatial Reasoning

Table 2: MMSI-Video-Bench results (Sufficient-Coverage setting)
MethodAvg.
Gemini 2.5 Flash-Thinking36.7
VLM-3R42.6
ConsiSpace SFT48.4
ConsiSpace UC-SSRL57.5

ConsiSpace UC-SSRL achieves 57.5 on MMSI-Video-Bench, +14.9 over strongest baseline VLM-3R (42.6). UC-SSRL improves +9.1 over pure SFT, demonstrating consistency RL effectiveness.

VSI-Bench Details

Table 1: VSI-Bench detailed results.

MMSI Results

Table 3: MMSI-Video-Bench detailed results.

Efficiency Analysis

Table 4: End-to-end efficiency and long-video scaling analysis.


Limitations

  1. Geometry encoder dependency: Relies on frozen VGGT for pose and depth estimation; geometric priors may be unreliable in fast-motion or texture-less scenes.
  2. Limited outdoor coverage: SFT data is primarily indoor (VSI-590K) with only nuScenes-10K for outdoor; generalization to complex outdoor spatial relations may be insufficient.
  3. UC-SSRL computational overhead: Two-view sampling and triple KL divergence computation increases training time, though only LoRA parameters are updated.

Conclusion and Outlook

ConsiSpace turns geometric consistency into both an evidence organization principle and an explicit learning signal, achieving geometry-gated writing, consistent fusion, and filtered retrieval through GCM, and optimizing cross-view stability through UC-SSRL. It improves average score by 12.6 points on three spatial reasoning benchmarks, providing a geometry-aware solution for navigation perception and long-video QA.

Key Insight: "Spatial consistency is not just an evidence organization principle but an explicit learning signal — when underlying 3D relations are stable, predictions from different views should agree, and this self-supervised constraint shifts models from semantics-first to geometry-aware."

Related Papers

IGGT4D: Streaming 4D Instance-Grounded Geometry Transformer

IGGT4D: Streaming 4D Instance-Grounded Geometry Transformer

Real-world spatial intelligence requires agents to understand scenes from continuous video streams, where objects move, persist, disappear, and reappear over time. While recent spatial foundation models have enabled generalizable feed-forward 3D reconstruction, most streaming methods remain geometry-centric and lack temporally consistent object-level understanding. Meanwhile, existing semantic reconstruction and 3D-aware vision-language methods largely rely on externally extracted 2D semantic cues or loosely coupled geometry inputs, limiting unified geometry-instance learning in long dynamic scenes. In this paper, we propose IGGT4D, a streaming instance-grounded geometry Transformer for online 4D scene understanding. IGGT4D processes video frames sequentially, reuses historical context through causal spatial-temporal modeling, and incrementally updates a unified representation of camera motion, geometry, and object identity. This enables long-sequence feed-forward reconstruction with geometry-instance consistency in dynamic environments. To address the lack of high-quality 4D supervision, we further construct InsScene4D-147K, a large-scale dataset spanning real/synthetic and static/dynamic scenes, with RGB images, depth, poses, and temporally consistent instance masks generated by an automated geometry-guided annotation pipeline. Experiments on 3D reconstruction, pose estimation, instance spatial tracking, and open-vocabulary segmentation demonstrate that IGGT4D outperforms existing streaming baselines while maintaining scalable online inference for long dynamic sequences.

Spatial IntelligencePaper空间智能Jul 21, 2026
Spatial-IQ: Deconstructing Spatial Intelligence via Hierarchical Capability Tests

Spatial-IQ: Deconstructing Spatial Intelligence via Hierarchical Capability Tests

Multimodal large language models (MLLMs) excel at visual interpretation but fail on spatial reasoning tasks that humans solve reliably. Existing benchmarks evaluate these models as black boxes, limiting their ability to identify the underlying causes of lower performance: when a model fails a spatial reasoning task, it remains difficult to ascertain whether the hurdle is perceptual, such as recognizing object boundaries, or cognitive, such as reasoning about occlusion to infer hidden geometry. We introduce Spatial-IQ, a hierarchical diagnostic framework that decomposes object counting in stacked 3D structures into 9 perceptual and cognitive sub-tasks organized by the developmental stages of human spatial cognition, with mental rotation as an additional target probe. Using NVIDIA Isaac Sim, we procedurally generated a diverse dataset of roughly 80,000 stacked 3D structures with per-task ground truth. We evaluate models across three output formats (free-response text, multiple-choice images, and image editing) alongside a human baseline. The Spatial-IQ framework shows that top-performing models often succeed at the target task (object counting) without succeeding on the lower-level sub-tasks intended to support it, and that models differ in how much of these hierarchical chains they preserve, often revealing shortcut behavior that raw target-task accuracy alone would obscure. Finally, we demonstrate that training models with chain-of-thought (CoT) supervision over our hierarchical sub-tasks, combined with reinforcement learning with verifiable rewards, significantly improves both spatial consistency across sub-tasks and target-task accuracy, supporting the value of the proposed decomposition as both a diagnostic tool and a training signal.

Spatial IntelligencePaper空间智能Jul 24, 2026
PlanCraft: Sketch, Refine, and Furnish for Architect-Inspired Progressive 3D Residential Scene Generation

PlanCraft: Sketch, Refine, and Furnish for Architect-Inspired Progressive 3D Residential Scene Generation

Two structural insights have been overlooked in automated residential floor plan generation. First, design is inherently progressive. Architects begin with rough strokes and refine them over time, whereas existing methods typically require their conditioning representation to be fully specified before generation, a fundamental mismatch with how design actually works. Second, the 2D floor plan is not an optional intermediate but an irreplaceable spatial contract. Once room boundaries, doors, and windows are fixed, furnishing reduces from open-ended spatial reasoning to bounded constraint satisfaction. Bypassing this contract, as existing 3D systems do by delegating layout to language models, yields overlapping rooms and implausible proportions; directly calling general-purpose language models likewise produces geometrically invalid layouts. Guided by these insights, we present PlanCraft. SketchPlan supplies the missing training signal by replaying the architect's drawing process on 80K real floor plans, producing partial sketches at every completeness level. PlanCraft-Diff progressively sharpens an incomplete sketch into a geometrically precise, vectorizable floor plan through a coarse-to-fine strategy. With the spatial contract established, PlanCraft-Agent then furnishes the scene within well-defined room boundaries. Experiments show that PlanCraft achieves a 61.1\% lower FID than the best existing 2D method and surpasses existing 3D systems by 15 points in expert-rated spatial rationality, with a sketch at only 25\% completion already outperforming all fully specified baselines.

Spatial IntelligencePaper空间智能Jul 26, 2026
FloAff-Kitchen: Bridging Navigation and Manipulation via Canonical and Progressive Floor Affordance Learning

FloAff-Kitchen: Bridging Navigation and Manipulation via Canonical and Progressive Floor Affordance Learning

Mobile manipulation requires robots to identify Floor Affordance (FloAff) that maximizes downstream manipulation success rather than merely ensuring navigation feasibility. FloAff prediction is a target-conditioned local spatial reasoning problem, yet existing methods suffer from representation ambiguity caused by irrelevant spatial context and arbitrary object orientations, while entangling shared and task-specific knowledge across heterogeneous manipulation skills. To address these challenges, we propose a unified framework for FloAff prediction from egocentric multimodal perception, consisting of canonical representation learning and progressive affordance prior learning. Specifically, we introduce a Canonical Floor Affordance Representation (CFAR), which learns canonical interaction geometry by preserving affordance-relevant local structure while eliminating nuisance spatial variations unrelated to robot base placement. We further propose Progressive Floor Affordance Learning (PFAL), which learns transferable FloAff priors from a foundation manipulation task and progressively adapts them to heterogeneous downstream manipulation skills. To facilitate systematic evaluation, we establish the first cross-scene, multi-view FloAff-Kitchen benchmark covering diverse manipulation skills, scene layouts, furniture styles, and viewpoints. Extensive experiments on three benchmark settings demonstrate that our method consistently outperforms strong baselines, while ablation studies validate the contribution of each proposed component. Project page: https://csu-hero-lab.github.io/FloAff-Kitchen_Web/

Spatial IntelligencePaper空间智能Jul 27, 2026