Skip to content

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

Qwen-3D is a geometry-aware LMM built on the Qwen backbone that fuses multi-view visual observations into a persistent world-aligned 3D representation using depth and camera pose. Two architectural moves distinguish it from prior 3D-LMMs: 3D Rotary Positional Embeddings attach to visual tokens so attention operates in scene space rather than per-frame, and a query-based segmentation decoder grounds language directly in the 3D representation rather than routing predictions through language tokens or proposal-selection heads. Trained jointly on 2D and 3D data, it beats prior 3D-LMMs and several proprietary 2D models on referential grounding, instance segmentation, and VQA while preserving standard 2D vision-language performance.

  • Frame-centric tokenization and limited context windows are the bottleneck for scaling LMMs to long videos; 3D geometry (depth + camera pose) offers a natural compression mechanism that fuses multi-view/temporal observations into one persistent scene representation [Abstract].
  • Existing 3D LMMs lag specialist 3D perception systems on grounding and segmentation because they communicate 3D predictions through language tokens, proposal selection, or lightweight grounding queries — a bottleneck between language reasoning and dense geometric prediction [Abstract].
  • Qwen-3D augments visual tokens with 3D RoPE, letting attention operate directly in 3D scene space rather than across independent image frames, enabling scalable cross-view and temporal reasoning [Abstract].
  • A query-based segmentation decoder grounds language directly in the underlying 3D scene representation, unifying referential grounding, instance segmentation, and VQA across images and videos [Abstract].
  • Across a diverse benchmark set, Qwen-3D surpasses existing 3D LMMs and outperforms several large proprietary 2D models [Abstract].
  • Joint training on 2D and 3D data preserves strong performance on standard 2D vision-language benchmarks [Abstract].

Qwen-3D takes the Qwen VLM backbone and injects two geometry-aware components. Visual tokens are lifted into a shared 3D scene space by combining monocular/multi-view features with per-token depth and camera-pose information; a 3D generalization of Rotary Positional Embeddings then indexes tokens by 3D position rather than by 2D patch index in each frame, so self-attention across a long video or multi-view scene is a single computation in world coordinates rather than per-frame attention plus late fusion. On the output side, a query-based dense mask decoder (of the DETR / Mask2Former lineage) reads from the same 3D-indexed representation, allowing a single model to emit referential-grounding boxes, instance masks, and VQA text from the same underlying tokens. Training mixes 2D and 3D data jointly so the 2D capabilities of the Qwen backbone are not overwritten. Per-benchmark ablations of 3D RoPE vs. baseline positional encoding, and of the mask-decoder vs. language-token grounding, are in the full paper (not retrievable in the fetched abstract at filing time).

Headline scoring is qualitative in the abstract: Qwen-3D “surpasses existing 3D LMMs and outperforms several large proprietary 2D models” across a “diverse set of benchmarks,” while general 2D vision-language benchmarks are “largely preserved.” Specific benchmarks (VSI-Bench, ScanQA, ScanRefer, Multi3DRefer, EmbSpatial, etc.) and numerical margins are not in the abstract and were not retrievable at filing time.

Two architectural bets pay off simultaneously — 3D RoPE for the input side and a dense mask decoder for the output side — and Qwen-3D is the cleanest filed instance of both being applied at once to the same Qwen backbone. It sits in direct dialogue with Scaling Spatial Intelligence with Multimodal Foundation Models (SenseNova-SI), which took the opposite bet: hold the architecture fixed and scale a taxonomy-curated 8M-sample dataset. Qwen-3D says the failure is representational and readout-side (fix RoPE, fix the decoder); SenseNova-SI says it is a data problem. A head-to-head on the same VSI-Bench / MMSI / MindCube sweep would settle a lot. It also complements BOP-Ask: Object-Interaction Reasoning for Vision-Language Models on the VLM Perception Failures output-format-collapse axis — BOP-Ask showed frontier VLMs collapse on pixel-precise 3D-grounded outputs when the format is 2D keypoint lists routed through language tokens; Qwen-3D’s dense-decoder design is exactly the architectural move that BOP-Ask’s diagnosis implies. Finally, the multi-view-3D-RoPE lever is the closest 3D-scene analog to what Cameras as Relative Positional Encoding proposed for camera-controlled video generation — same underlying instinct (cameras / geometry belong in the positional-encoding channel), applied to spatial understanding rather than generation.