--- pretty_name: Real4D license: other task_categories: - depth-estimation tags: - 4d - dynamic-scene - multi-view - novel-view-synthesis - camera-pose - gaussian-splatting size_categories: - 100K/ │ ├── images//_.jpg │ ├── depths//_.jpg.geometric.png │ ├── depth_vis//_.jpg │ ├── camera_params/.json │ └── video/_{rgb,depth}.mp4 ├── meetroom/ │ └── / │ └── ... ├── dataset_manifest.json ├── docs/DATA_FORMAT.md └── scripts/ ├── load_frame.py ├── validate_dataset.py └── upload_to_hf.sh ``` Frame files are numbered from `000001` to `000300`, while JSON list indices are zero-based. The JSON field `image_name` identifies the source reference camera; it is not the generated frame filename. Match frames by trajectory and list index as shown in `scripts/load_frame.py`. The local generation directories `_scene_cache`, `plane_depths`, `plane_depth_vis`, and `*_plane_depth.mp4` are intermediate artifacts and are not part of the public Real4D release. See [docs/DATA_FORMAT.md](docs/DATA_FORMAT.md) for field definitions and loading examples. Run the integrity check before use: ```bash python scripts/validate_dataset.py . python scripts/validate_dataset.py . --full ``` ## Source data and license Real4D contains derived renderings of real scenes from two source datasets. The N3DV source dataset is distributed under CC BY-NC 4.0. The official StreamRF materials describe MeetRoom as released for research purposes but do not state an explicit dataset license. Consequently, this dataset card uses `license: other`; the applicable source-dataset terms and required citations must be preserved. Public redistribution of the MeetRoom-derived subset should be confirmed with the original dataset owners before upload. This notice does not replace the source-dataset licenses or grant additional rights to the underlying captures. ## Citation The Real4D paper citation will be added after publication. When using a source subset, also cite its original dataset paper: ```bibtex @inproceedings{li2022neural3dvideo, title = {Neural 3D Video Synthesis from Multi-view Video}, author = {Li, Tianye and Slavcheva, Miroslava and Zollhoefer, Michael and Green, Simon and Lassner, Christoph and Kim, Changil and Schmidt, Tanner and Lovegrove, Steven and Goesele, Michael and Newcombe, Richard and Lv, Zhaoyang}, booktitle = {CVPR}, year = {2022} } @inproceedings{li2022streaming, title = {Streaming Radiance Fields for 3D Video Synthesis}, author = {Li, Lingzhi and Shen, Zhen and Wang, Zhongshu and Shen, Li and Tan, Ping}, booktitle = {NeurIPS}, year = {2022} } ```