Qwen-3D: A Generalist 3D Vision-Language Model for Spatial Understanding

Carnegie Mellon University

Equal contribution

ECCV 2026
Qwen-3D teaser figure

Qwen-3D performs attention directly in 3D world space, compresses multi-view observations into persistent scene tokens, and grounds language with a query-based mask decoder — unifying referential grounding, instance segmentation, and VQA across images and videos.

Abstract

Large Multimodal Models (LMMs) succeed on images and short videos, yet scaling them to long videos remains hard under frame-centric tokenization. 3D geometry offers a natural compression mechanism: depth and camera pose fuse multi-view observations into a persistent, world-aligned representation. Recent 3D LMMs improve spatial reasoning, but still lag specialists on grounding and segmentation — often because geometry-aware decoding is bottlenecked through language tokens, proposal selection, or lightweight grounding queries.

We introduce Qwen-3D, a geometry-aware LMM built on Qwen2.5-VL that (i) compresses visual tokens with multi-view geometric cues, (ii) applies 3D Rotary Positional Embeddings so attention operates in scene space, and (iii) connects contextualized backbone features to a query-based segmentation decoder for dense language-to-geometry grounding. Across grounding, segmentation, and VQA, Qwen-3D surpasses existing 3D LMMs and several proprietary 2D models, while joint 2D+3D training preserves strong 2D vision–language performance.

Why Current 3D LMMs Still Lag Specialists

Existing 3D LMMs improve high-level spatial reasoning, yet remain far behind specialist detectors and segmentors. A core issue is the interface between language reasoning and dense geometric prediction: most models decode 3D outputs as text coordinates, select from detector proposals, or pass a single <REF> token into a lightweight head. These interfaces create an information bottleneck between rich visual representations and precise 3D grounding.

Comparison of 3D LMM decoding strategies

Decoding object information in 3D LMMs. (i) Text-space decoding generates coordinates as tokens. (ii) Proposal selection is limited by external detectors. (iii) Special-token decoding compresses grounding into one latent. (iv) Qwen-3D routes full contextualized vision–language features into a mask decoder for dense 2D/3D grounding.

What Makes Qwen-3D Geometry-Aware?

Qwen-3D extends Qwen2.5-VL with three tightly coupled components: a world-space scene representation, geometry-aware vision–language attention, and a shared mask-based grounding decoder.

1

World-space tokens

Multi-view RGB features are unprojected with depth and camera pose, then voxel-pooled (~5cm) so redundant views collapse into compact, persistent 3D tokens.

2

3D Rotary PE

Multimodal RoPE is extended to \((t, x, y, z)\), letting attention reason over nearby 3D locations instead of independent image frames — with full attention over visual tokens.

3

Mask decoder interface

Object queries attend to the full visual and language token streams, predicting segmentation masks and text-span grounding scores without a single-token bottleneck.

Qwen-3D architecture

Qwen-3D architecture. Multi-view RGB-D features from the frozen Qwen ViT are unprojected into world coordinates, voxel-pooled, and fused with text via LoRA-adapted VL attention with 3D Rotary PE. Shared tokens feed a 3D mask decoder (grounding / instance segmentation) and a text decoder (open-ended QA).

Training jointly supervises mask loss, text-span grounding loss, and text generation. The model shares parameters across 2D and 3D: 2D tokens use grid PE, while 3D tokens use world coordinates; we optionally lift 2D images to pseudo-3D with reconstruction models to improve alignment. Only ~50M trainable parameters are introduced (LoRA + mask decoder).

What Did We Discover?

+12%
Acc@25 over best single-stage 3D LMMs on ScanRefer
+4%
Acc@25 over prior 3D-LMM SOTA (Video-3D-LLM)
+13%
mAP over Grounded-3D-LLM on ScanNet200 instance segmentation
55.7
Acc@25 on OOD Locate-3D / ScanNet++ (vs. 33.2 prior LMM)

3D Visual Grounding & VQA

On ScanRefer, Qwen-3D-3B reaches 62.2 / 55.3 Acc@25/50 and the 7B variant reaches 62.8 / 54.7 — matching specialist UniVLG closely and establishing a new state of the art among 3D LMMs. The 3B model is already competitive on VQA; the 7B model leads ScanQA and SQA3D EM@1.

Method ScanRefer @25 ScanRefer @50 ScanQA EM@1 SQA3D EM@1
Experts
UniVLG63.556.425.750.2
Locate-3D61.150.9
2D VLMs
GPT-4o48.232.518.0
Qwen2.5-VL-7B41.614.9
3D LMMs
Video-3D LLM-7B58.151.730.158.6
LLaVA-3D-7B50.142.727.055.6
Grounded 3D-LLM48.644.0
Qwen-3D-3B (Ours)62.255.328.055.4
Qwen-3D-7B (Ours)62.854.731.559.6
Takeaway: Dense mask decoding + world-space attention closes much of the gap between generalist 3D LMMs and specialist grounding models — already with a 3B backbone, and further on VQA with 7B.

Out-of-Domain Grounding & Instance Segmentation

Locate-3D / ScanNet++ (OOD)
ModelAcc@25Acc@50
UniVLG32.324.6
Video-3D LLM33.227.6
Qwen-3D-3B55.743.4
ScanNet200 Instance Seg.
ModelmAPmAP25
UniVLG (lang-prompted)27.946.1
Grounded-3D-LLM12.116.8
Qwen-3D-3B25.341.5
Takeaway: Direct decoding from VLM features generalizes better out-of-domain than proposal-selection pipelines, and unlocks full-scene instance segmentation for LMMs.

Ablations: Where Do the Gains Come From?

Controlled ablations on ScanRefer (Top-1@0.5, 50-scene subset) show that the full text/visual token interface, aligned 3D RoPE, full attention over visual tokens, and LoRA finetuning of the VLM are all critical.

Ablation Variant Top-1 Acc.
Decoder interfaceQwen-3D with <REF> token39.7
Decoder interfaceFull text + visual tokens (ours)53.5
Positional embedding2D / Vanilla 3D53.2 / 49.9
Positional embeddingAligned 3D RoPE (ours)53.5
Attention maskCausal36.4
Attention maskFull (ours)53.5
VLM tuningFrozen37.0
VLM tuningLoRA finetune (ours)53.5

Joint 2D+3D training also preserves backbone strength on RefCOCO / RealWorldQA (e.g., RefCOCO 88.1 vs. Qwen2.5-VL-3B 89.1), showing geometry-aware reasoning can be added without collapsing 2D competence.

BibTeX

@inproceedings{lin2026qwen3d,
  title     = {Qwen-3D: A Generalist 3D Vision-Language Model for Spatial Understanding},
  author    = {Lin, Lucy and Jain, Ayush and Liu, Yifan and Fragkiadaki, Katerina},
  booktitle = {European Conference on Computer Vision (ECCV)},
  year      = {2026}
}