Skip to content
RobotWorld
Back to Papers

PAPER DEEP DIVE

Spatial IntelligencePaper空间智能

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.

Zhengyu Zou, Hao Li, Kuixuan Jiao, Liu Liu, Tingyang Xiao, Xiaolin Zhou, Fangzhou Hong, Zhizhong Su, Dingwen Zhang, Ziwei LiuJuly 21, 20265 min read
中文

1. Overview

Real-world spatial intelligence is inherently online and dynamic. An embodied agent receives a continuous video stream where objects move, become occluded, leave the field of view, and reappear. Estimating camera motion and scene geometry alone is insufficient — the agent must also maintain temporally consistent object identities.

This paper proposes IGGT4D (Streaming Instance-Grounded Geometry Transformer), reformulating 4D scene understanding as streaming geometry-instance prediction: causally predicting camera motion, scene geometry, and persistent object identities from continuous video streams. It also constructs InsScene4D-147K, a large-scale dataset spanning real/synthetic and static/dynamic scenes with RGB images, depth, poses, and temporally consistent instance masks.

💡 Core innovation: treating object identity as a first-class prediction target alongside geometry, jointly updated in causal streaming inference — rather than relying on external 2D semantic extraction or full-sequence bidirectional reasoning.
IGGT4D online geometry-instance prediction

2. Related Work

Surveys streaming spatial foundation models (DUSt3R, VGGT, Spann3R, MUSt3R, CUT3R, Stream3R) and instance-aware 3D scene understanding (LangSplat, LSeg, Uni3R, IGGT). Existing streaming models remain geometry-centric without temporally consistent object identity maintenance; existing instance-aware methods use fixed image sets with global cross-view attention, preventing efficient long-video processing.

3. Method

3.1 Problem Formulation

Given RGB sequence $\{I_{t}\}_{t=1}^{N}$, IGGT4D performs feed-forward sequential inference:

$$\mathcal{F}_{\theta}:\left(I_{t},\tilde{\boldsymbol{\pi}}_{t}\right)\mapsto\left(\boldsymbol{\pi}_{t},R_{t},D_{t},S_{t}\right),\quad t=1,\ldots,N$$

Outputs: camera parameters $\boldsymbol{\pi}_{t}=[\mathbf{t}_{t},\mathbf{q}_{t},\mathbf{f}_{t}]\in\mathbb{R}^{9}$ (translation, rotation, field-of-view), ray map $R_{t}=[O_{t},V_{t}]$, depth map $D_{t}$, instance feature map $S_{t}\in\mathbb{R}^{H\times W\times 8}$.

3.2 Streaming Instance-Grounded Geometric Transformer

IGGT4D architecture overview

Adapts DA3's unified geometric Transformer from fixed-set 3D prediction to causal streaming 4D understanding. Each frame encoded into image tokens concatenated with a camera token, processed by 40 Transformer blocks with interleaved intra-view and cross-view attention, producing multi-scale features $\{\mathbf{F}_{t}^{(l)}\}_{l=1}^{4}$.

Key modification: causal masks on cross-camera and cross-view attention so each frame only attends to history. Geometry-Aware Attention (Geo-Attn) lets instance features benefit from geometric priors. First-Frame Geometric Normalization (FF-Norm) eliminates scale ambiguity in streaming reconstruction.

Instance feature and mask visualization

3.3 Efficient Streaming Instance Clustering

Replaces offline HDBSCAN with a lightweight clustering codebook, performing frame-by-frame cosine clustering with constant memory footprint. Objects marked as disappeared if projected area drops sharply for 5 consecutive frames, preventing stale ID propagation.

3.4 4D Scene Understanding Applications

Supports instance spatial tracking, open-vocabulary semantic segmentation, 4D QA scene grounding. Instance features matched with CLIP text features for open-vocabulary querying.

3.5 Training Objectives

Geometry: depth L1 loss $\mathcal{L}_{D}$, ray L1 loss $\mathcal{L}_{R}=\|O_{t}-O_{t}^{\ast}\|_{1}+\|V_{t}-V_{t}^{\ast}\|_{1}$, 3D point reconstruction loss $\mathcal{L}_{P}=\|P_{t}-P_{t}^{\ast}\|_{1}$ where $P_{t}=O_{t}+D_{t}V_{t}$, camera loss $\mathcal{L}_{\pi}=\|\boldsymbol{\pi}_{t}-\boldsymbol{\pi}_{t}^{\ast}\|_{1}$.

Instance: multi-view contrastive loss with intra-view pull/push and cross-view pull/push:

$$\mathcal{L}_{\mathrm{ins}}=\sum_{v}\Big(\lambda_{\mathrm{pull}}^{\mathrm{in}}\sum_{p\in M_{k}^{v}}\big[\|\mathbf{f}_{p}-\mu_{k}^{v}\|_{2}-\delta_{\mathrm{pull}}^{\mathrm{in}}\big]_{+}+\lambda_{\mathrm{push}}^{\mathrm{in}}\sum_{k\neq j}\big[\delta_{\mathrm{push}}^{\mathrm{in}}-\|\mu_{k}^{v}-\mu_{j}^{v}\|_{2}\big]_{+}\Big)+\text{cross-view terms}$$

Final: $\mathcal{L}=\mathcal{L}_{\mathrm{geo}}+\lambda_{\mathrm{ins}}\mathcal{L}_{\mathrm{ins}}$

4. InsScene4D-147K Dataset

InsScene4D-147K data curation pipeline

147K video sequences across four domains: static-real (RealEstate10K, ScanNet++), static-synthetic (Aria Synthetic, SceneNet, Infinigen, Hypersim), dynamic-real (HOI4D, Waymo, Aria Digital Twin), dynamic-synthetic (RoboTwin 2.0, Kubric, Dynamic Replica, PointOdyssey, VKITTI2).

Geometry-guided annotation: DA3 estimates multi-view consistent depth → TSDF fusion reconstructs 3D mesh → project mesh vertices to image plane forming inheritance map → SAM2 generates masks → IoU matching for ID inheritance/creation. Dynamic scenes use available annotations to override projected pseudo-labels.

5. Architecture

flowchart LR
    V[Video Frame Sequence I_t] --> ENC[Frame Encoder
Image Tokens + Camera Token] ENC --> T40[40 Transformer Blocks
Interleaved Intra+Cross View
Causal Masks] T40 --> MS[Multi-Scale Features F_t] MS --> TDPT[Tri-DPT Head] TDPT --> GEO[Geometry Outputs
Pose π + Ray R + Depth D] TDPT --> INS[Instance Features S_t] INS --> SC[Streaming Clustering
Lightweight Codebook + Cosine] SC --> MASK[Instance Masks
4D Consistent] GEO --> MERGE[Spatio-Temporal Consistent
Scene Representation] MASK --> MERGE MERGE --> DOWN[Downstream: Instance Tracking
Open-Vocab Segmentation
4D QA] style T40 fill:#4f9eff,color:#fff style SC fill:#ff6b6b,color:#fff style MERGE fill:#51cf66,color:#fff

6. Experimental Results

6.1 Camera Pose Estimation and 3D Reconstruction

Geometry benchmark results

Evaluated on HiRoom, ETH3D, 7Scenes, ScanNet++. IGGT4D achieves best average pose estimation among streaming models (AUC@3: 0.4464), outperforming several full-attention baselines. 3D reconstruction F1 surpasses all streaming baselines in both predicted and ground-truth pose settings.

3D reconstruction qualitative comparison
MethodTypeAUC@3 ↑AUC@30 ↑F1(w/o p.) ↑F1(w/ p.) ↑
DA3Full-attention0.60460.93520.74300.7980
Stream3RStreaming0.18710.79470.45510.5504
LingBot-MapStreaming0.30600.86470.52280.6082
IGGT4DStreaming0.44640.89240.66780.7225

6.2 Instance Spatial Tracking

On HOI4D, Waymo, ScanNet++, PointOdyssey. IGGT OOMs on long sequences; IGGT4D scales to 100 frames. Long-seq avg T-mIoU 58.84 (vs SAM2's 55.62), T-SR 85.41 (vs 76.07).

MethodLong T-mIoULong T-SRShort T-mIoUShort T-SR
SAM255.6276.0759.2179.57
IGGTOOMOOM61.1394.83
IGGT4D58.8485.4163.4596.88

6.3 Open-Vocabulary Semantic Segmentation

Highest mIoU and mAcc on Waymo and ScanNet++. Long-seq avg mIoU 40.08 (vs LSeg 31.95), mAcc 73.84 (vs 48.23).

MethodLong mIoULong mAccShort mIoUShort mAcc
LSeg31.9548.2332.0650.54
IGGTOOMOOM31.1661.90
IGGT4D40.0873.8439.1172.25

6.4 Ablation and Efficiency

Removing Geo-Attn degrades instance/semantic performance. Removing FF-Norm causes scale ambiguity across all metrics. Streaming clustering: 100 frames in 7.43s with 0.7GB memory; IGGT's HDBSCAN OOMs at 32 frames.

ClusteringN=8 Time(s)N=8 Mem(GB)N=100 Time(s)N=100 Mem(GB)
IGGT (HDBSCAN)105.813.2OOMOOM
IGGT4D (Streaming)0.780.77.430.7

7. Conclusion

IGGT4D jointly predicts camera motion, scene geometry, and temporally consistent instance features via causal spatial-temporal modeling and geometry-grounded instance prediction. InsScene4D-147K provides large-scale geometry-consistent instance annotations across real/synthetic and static/dynamic scenes. Experiments demonstrate improved object-level consistency across reconstruction, pose estimation, instance tracking, and open-vocabulary segmentation while preserving scalable streaming inference.

前向映射函数

$$ \mathcal{F}_{\theta}:\left(I_{t},\tilde{\boldsymbol{\pi}}_{t}\right)\mapsto\left(\boldsymbol{\pi}_{t},R_{t},D_{t},S_{t}\right) $$

相机位姿参数化

$$ \boldsymbol{\pi}_{t}=[\mathbf{t}_{t},\mathbf{q}_{t},\mathbf{f}_{t}]\in\mathbb{R}^{9} $$

渲染输出表示

$$ R_{t}=[O_{t},V_{t}]\in\mathbb{R}^{H_{r}\times W_{r}\times 6} $$

Limitations include needing broader data coverage and currently relying mainly on supervised learning.

💡 The contribution pushes 4D scene understanding from "geometry-centric" to "geometry-instance unified": jointly predicting geometry and object identity in a causal streaming framework, replacing offline HDBSCAN with streaming clustering for O(1) memory online inference, and filling the 4D instance supervision gap through a geometry-guided annotation pipeline.

Related Papers

ConsiSpace: Learning Geometric Consistency Matters for Video Spatial Reasoning

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.

Spatial IntelligencePaper空间智能Jul 20, 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