[CVPR 2025] WorldStereo: Converting Video Diffusion into High-Fidelity 3D World Models

WorldStereo: Bridging Camera-Guided Video Generation and Scene Reconstruction via 3D Geometric Memories

Summary
Problem
Method
Results
Takeaways
Abstract

WorldStereo is a novel camera-guided video generation framework designed to bridge the gap between video diffusion models (VDMs) and consistent 3D scene reconstruction. By introducing two geometry-aware memory modules, GGM and SSM, it achieves state-of-the-art performance in multi-view consistency and precise camera control, significantly outperforming prior works like Uni3C and Gen3C.

TL;DR

WorldStereo bridges the gap between camera-controlled video generation and 3D scene reconstruction. By introducing Global-Geometric Memory (GGM) for coarse structure and Spatial-Stereo Memory (SSM) for fine-grained details, it enables the generation of highly consistent multi-view videos from a single image or panorama. It also features a 20x speedup via distilled 4-step inference without sacrificing generalization.

The Core Challenge: The Consistency Gap

While foundational Video Diffusion Models (VDMs) like Sora or HunyuanVideo produce stunning visuals, they often fail the "3D consistency test." If you move a virtual camera in a circle around an object, the object's back might not match its front, or the geometry might "drift."

Traditional solutions like Autoregressive (AR) generation lead to error accumulation, while long-context Transformers are computationally "heavy." WorldStereo identifies the missing link: 3D Geometric Memory.

Methodology: Two Layers of Memory

The authors propose that consistency requires two different types of "remembering":

1. Global-Geometric Memory (GGM)

GGM focuses on the "skeleton" of the scene. It uses an incrementally updated point cloud (derived from the 3D cache) to provide coarse structural guidance. This prevents the model from "hallucinating" entirely new structures when the camera moves to a novel viewpoint.

2. Spatial-Stereo Memory (SSM)

GGM isn't enough for textures. SSM acts as the "skin" layer. It retrieves the most relevant historical frames from a 2D memory bank and uses 3D Correspondence (Pointmaps) to explicitly tell the model: "This pixel in the current view corresponds to that pixel in the reference view."

Overall Architecture Figure 2: The WorldStereo pipeline. Note the dual ControlNet branches: one for camera/GGM and one for the SSM mechanism.

Efficient Inference with DMD

Scaling video generation usually kills inference speed. WorldStereo utilizes Distribution Matching Distillation (DMD). By distilling the 14B parameter backbone into a 4-step generator, they achieve a 20x speedup, making interactive scene exploration feasible.

Quantitative & Qualitative Superiority

In the newly proposed 3D reconstruction benchmark (using Tanks-and-Temples and MipNeRF360), WorldStereo leaves competitors in the dust.

MethodF1-Score (T&T) ↑RotErr ↓Time (s)
SEVA0.2860.37990
Uni3C0.4240.362162
WorldStereo-Full0.5780.247173
WorldStereo-DMD0.5340.2919

Table 3 excerpt: WorldStereo achieves a massive jump in F1-score (reconstruction accuracy) while DMD reduces inference to 9 seconds.

The qualitative evidence is even more striking. Where other models produce fragmented or "floaty" point clouds, WorldStereo generates dense, watertight reconstructions.

Experimental Results Comparison Figure 4: Comparison of point cloud reconstruction. WorldStereo (ours) produces significantly more complete and accurate 3D structures than SEVA or Gen3C.

Deep Insight: Why It Works

The brilliance of WorldStereo lies in its Attention Constraint. In the SSM module, instead of allowing a frame to attend to every historical frame (which is noisy and costly), the authors horizontally stitch the target frame with a specifically retrieved reference frame. By forcing the model to look only at its 3D-aligned partner, they mimic the physical principles of Stereo Matching, resulting in superior detail retention.

Conclusion & Future Outlook

WorldStereo effectively turns a 2D video generator into a 3D world engine. Its ability to handle both perspective and panoramic inputs suggests a future where high-quality VR environments can be "dreamed" up from a single snapshot in seconds.

Key Strengths:

  • Rigorous 3D consistency via geometric caching.
  • Plug-and-play compatibility with distilled backbones.
  • Strong generalization to out-of-distribution (OOD) real-world scenes.

Limitations: While the 4-step DMD is fast, the initial "warm-up" (reconstructing the 3D cache) still relies on external feed-forward models (WorldMirror), which adds a small layer of dependency.

WorldStereo sets a new bar for how we evaluate "World Models"—not just by how good they look, but by how physically consistent they actually are.

Find Similar Papers

Try Our Examples

  • Find other recent papers that utilize 3D point cloud guidance or geometric priors to improve temporal consistency in video diffusion models.
  • Which paper first introduced the Distribution Matching Distillation (DMD) technique for diffusion models, and how does WorldStereo's modified version specifically handle ControlNet branches?
  • Explore research that applies geometry-aware memory mechanisms specifically to panoramic 360-degree scene generation or large-scale outdoor environment synthesis.
Contents
[CVPR 2025] WorldStereo: Converting Video Diffusion into High-Fidelity 3D World Models
1. TL;DR
2. The Core Challenge: The Consistency Gap
3. Methodology: Two Layers of Memory
3.1. 1. Global-Geometric Memory (GGM)
3.2. 2. Spatial-Stereo Memory (SSM)
3.3. Efficient Inference with DMD
4. Quantitative & Qualitative Superiority
5. Deep Insight: Why It Works
6. Conclusion & Future Outlook