- [2024/10/17] Repository Initialization.
Closed-loop simulation is essential for advancing end-to-end autonomous driving systems. Contemporary sensor simulation methods, such as NeRF and 3DGS, rely predominantly on conditions closely aligned with training data distributions, which are largely confined to forward-driving scenarios. Consequently, these methods face limitations when rendering complex maneuvers (e.g., lane change, acceleration, deceleration). Recent advancements in autonomous-driving world models have demonstrated the potential to generate diverse driving videos. However, these approaches remain constrained to 2D video generation, inherently lacking the spatiotemporal coherence required to capture intricacies of dynamic driving environments. In this paper, we introduce DriveDreamer4D, which enhances 4D driving scene representation leveraging world model priors. Specifically, we utilize the world model as a data machine to synthesize novel trajectory videos, where structured conditions are explicitly leveraged to control the spatial-temporal consistency of traffic elements. Besides, the cousin data training strategy is proposed to facilitate merging real and synthetic data for optimizing 4DGS. To our knowledge, DriveDreamer4D is the first to utilize video generation models for improving 4D reconstruction in driving scenarios. Experimental results reveal that DriveDreamer4D significantly enhances generation quality under novel trajectory views, achieving a relative improvement in FID by 32.1%, 46.4%, and 16.3% compared to PVG, S3Gaussian, and Deformable-GS. Moreover, DriveDreamer4D markedly enhances the spatiotemporal coherence of driving agents, which is verified by a comprehensive user study and the relative increases of 22.6%, 43.5%, and 15.6% in the NTA-IoU metric.
conda create -n drivedreamer4d python=3.8
conda activate drivedreamer4d
pip install torch==2.4.1 torchvision==0.19.1 torchaudio==2.4.1 --index-url https://download.pytorch.org/whl/cu121
pip install -r requirments.txt
pip install ./submodules/gsplat-1.3.0
pip install git+https://github.com/facebookresearch/pytorch3d.git
pip install ./submodules/nvdiffrast
pip install ./submodules/smplx
Download data (Baidu, Google) and extract it to the ./data/waymo/ directory.
Download checkpoint (Baidu, Google) to ./exp/pvg_example
python tool/eval.py --resume_from ./exp/pvg_example/checkpoint_final.pth
All selected scenes are sourced from the validation set of the Waymo dataset. The official file names of these scenes, are listed along with their respective starting and ending frames.
Scene | Start Frame | End Frame |
---|---|---|
segment-10359308928573410754_720_000_740_000_with_camera_labels.tfrecord | 120 | 159 |
segment-12820461091157089924_5202_916_5222_916_with_camera_labels.tfrecord | 0 | 39 |
segment-15021599536622641101_556_150_576_150_with_camera_labels.tfrecord | 0 | 39 |
segment-16767575238225610271_5185_000_5205_000_with_camera_labels.tfrecord | 0 | 39 |
segment-17152649515605309595_3440_000_3460_000_with_camera_labels.tfrecord | 60 | 99 |
segment-17860546506509760757_6040_000_6060_000_with_camera_labels.tfrecord | 90 | 129 |
segment-2506799708748258165_6455_000_6475_000_with_camera_labels.tfrecord | 80 | 119 |
segment-3015436519694987712_1300_000_1320_000_with_camera_labels.tfrecord | 40 | 79 |
pvg_vs_drivedreamer4d_with_text.mp4
s3gaussian_vs_drivedreamer4d_with_text.mp4
deformablegs_vs_drivedreamer4d_with_text.mp4
Comparisons of novel trajectory renderings during lane change scenarios. The left column shows PVG, S3Gaussian, and Deformable-GS, while the right column shows DriveDreamer4D-PVG, DriveDreamer4D-S3Gaussian, and DriveDreamer4D-Deformable-GS.
pvg_vs_drivedreamer4d_with_text.mp4
s3gaussian_vs_drivedreamer4d_with_text.mp4
deformablegs_vs_drivedreamer4d_with_text.mp4
Comparisons of novel trajectory renderings during speed change scenarios. The left column shows PVG, S3Gaussian, and Deformable-GS, while the right column shows DriveDreamer4D-PVG, DriveDreamer4D-S3Gaussian, and DriveDreamer4D-Deformable-GS.
We would like to thank the following works and projects, for their open research and exploration: DriveStudio, DriveDreamer, DriveDreamer-2, and DriveDreamer4D.
If this work is helpful for your research, please consider citing the following BibTeX entry.
@inproceedings{zhao2024drive,
title={DriveDreamer4D: World Models Are Effective Data Machines for 4D Driving Scene Representation},
author={Guosheng Zhao and Chaojun Ni and Xiaofeng Wang and Zheng Zhu and Xueyang Zhang and Yida Wang and Guan Huang and Xinze Chen and Boyuan Wang and Youyi Zhang and Wenjun Mei and Xingang Wang},
journal={arxiv arXiv preprint arXiv:2410.13571},
year={2024},
}