Preprint
Computer Vision

3D-Aware VLMs with Implicit and Explicit Geometries

Wenhao Li, Xueying Jiang, Quanhao Qian, Deli Zhao, Ran Xu, Shijian Lu, Gongjie Zhang
July 23, 2026

0

Citations

0

Influential Citations

Venue

2026

Year

Abstract

Despite rapid progress, most existing vision-language models (VLMs) built from 2D visual inputs often struggle when handling various 3D tasks that require fine-grained spatial understanding and reasoning. To bridge this gap, we present VLM-IE3D, a unified framework that enhances the 3D spatial awareness of VLMs by equipping them with both implicit and explicit 3D geometries learned from RGB videos. Our VLM-IE3D introduces Implicit Geometry Tokens (IGTs) that capture high-level geometric priors from input videos, as well as complementary Explicit Geometry Tokens (EGTs) that encode detailed geometric structures from reconstructed 3D attributes. On top of that, VLM-IE3D comes with a 3D-aware adapter that effectively fuses the two types of geometric representations with 2D visual cues. This RGB-only design injects strong 3D inductive biases for fine-grained spatial understanding and reasoning without requiring any additional 3D inputs. Extensive experiments show that VLM-IE3D achieves superior performance consistently across various 3D tasks including 3D video detection, 3D visual grounding, 3D dense captioning, and spatial reasoning. Code and models are available at https://github.com/Vegetebird/VLM-IE3D.

Analysis

Why This Paper Matters

Vision-language models (VLMs) have made remarkable progress in understanding 2D images and text, but they often fail at tasks requiring fine-grained 3D spatial reasoning, such as detecting objects in 3D space or grounding language to 3D locations. This paper addresses a critical gap: how to equip VLMs with 3D awareness without relying on expensive 3D sensors or annotations. By learning 3D geometries from RGB videos alone, VLM-IE3D offers a scalable and practical solution that could democratize 3D understanding for a wide range of applications.

The key insight is that videos naturally contain rich 3D information through motion and viewpoint changes. The authors cleverly decompose 3D geometry into two complementary representations: implicit tokens that capture high-level priors (like object shapes and layouts) and explicit tokens that encode detailed structures (like point clouds or depth). This dual representation allows the model to handle both coarse and fine-grained spatial tasks effectively.

Technical Contributions

  • Implicit Geometry Tokens (IGTs): Extracted from video frames using a transformer encoder, these tokens capture high-level geometric priors such as object relationships and scene layout, providing a global understanding of 3D space.
  • Explicit Geometry Tokens (EGTs): Derived from reconstructed 3D attributes (e.g., depth maps or point clouds), these tokens encode detailed geometric structures, enabling precise localization and fine-grained reasoning.
  • 3D-Aware Adapter: A fusion module that combines IGTs, EGTs, and standard 2D visual features from a pre-trained VLM. The adapter is designed to inject 3D inductive biases while preserving the VLM's original language understanding capabilities.
  • RGB-Only Training: The entire pipeline is trained on RGB videos without requiring any 3D ground truth, making it highly scalable and applicable to existing video datasets.

Results

The paper reports consistent superior performance across four 3D tasks:

  • 3D Video Detection: Outperforms prior methods on standard benchmarks, demonstrating accurate 3D bounding box prediction from video.
  • 3D Visual Grounding: Achieves higher accuracy in localizing objects described by natural language in 3D space.
  • 3D Dense Captioning: Generates more detailed and spatially accurate captions for 3D scenes.
  • Spatial Reasoning: Shows improved performance on tasks requiring understanding of spatial relationships (e.g., "left of", "behind").

While specific numerical metrics are not provided in the abstract, the claim of "superior performance consistently" suggests strong gains over baselines. The code and models are publicly available, enabling reproducibility and further research.

Significance

VLM-IE3D represents a significant step toward bridging the gap between 2D VLMs and 3D understanding. By leveraging readily available RGB videos, it avoids the need for specialized 3D sensors or manual 3D annotations, which are costly and scarce. This could accelerate the deployment of spatially aware AI in robotics (e.g., manipulation, navigation), autonomous driving (e.g., 3D object detection), and augmented reality (e.g., scene understanding).

The dual-token approach is also architecturally elegant, as it separates high-level and detailed geometric information, allowing the model to flexibly attend to the appropriate level of detail for different tasks. Future work could explore extending this framework to handle dynamic scenes, multiple objects, or even 4D (spatio-temporal) reasoning.