---
size_categories:
- 100B
### Dataset Sources - **[Paper](https://arxiv.org/abs/2406.16038)** - **[Demo](https://livescenes.github.io/)** ## Uses ### Direct Use To download the entire dataset, follow these steps: ```bash git lfs install git clone https://huggingface.co/datasets/IPEC-COMMUNITY/LiveScene # Merge the parts (if necessary) cat {scene_name}_part_* > {scene_name}.tar.gz tar -xzf {scene_name}.tar.gz ``` If you only want to download a specific subset, use the following code: ```python from huggingface_hub import hf_hub_download hf_hub_download( repo_id="IPEC-COMMUNITY/LiveScene", filename="OmniSim/{scene_name}.tar.gz", repo_type="dataset", local_dir=".", ) ``` After downloading, you can extract the subset using: ```bash tar -xzf {scene_name}.tar.gz ``` ## Dataset Structure ``` . |-- InterReal `-- {scene_name}.tar.gz |-- depth | `-- xxx.npy |-- images | `-- xxx.jpg |-- images_2 |-- images_4 |-- images_8 |-- masks | `-- xxx.npy |-- key_frame_value.yaml |-- mapping.yaml `-- transforms.json |-- OmniSim `-- {scene_name}.tar.gz |-- depth | `-- xxx.npy |-- images | `-- xxx.png |-- mask | `-- xxx.npy |-- key_frame_value.yaml |-- mapping.yaml `-- transforms.json ``` ## Dataset Creation ### Curation Rationale To our knowledge, existing view synthetic datasets for interactive scene rendering are primarily limited to a few interactive objects due to necessitating a substantial amount of manual annotation of object masks and states, making it impractical to scale up to real scenarios involving multi-object interactions. To bridge this gap, we construct two scene-level, high-quality annotated datasets to advance research progress in reconstructing and understanding interactive scenes: **OmniSim** and **InterReal**. ### Data Collection and Processing #### Scene Assets and Generation Pipeline for OmniSim We generate the synthetic dataset using the OmniGibson simulator. The dataset consists of 20 interactive scenes from 7 scene models: *\#rs*, *\#ihlen*, *\#beechwood*, *\#merom*, *\#pomaria*, *\#wainscott*, and *\#benevolence*. The scenes feature various interactive objects, including cabinets, refrigerators, doors, drawers, and more, each with different hinge joints. We configure the simulator camera with an intrinsic parameter set of focal length 8, aperture 20, and a resolution of 1024 × 1024. By varying the rotation vectors for each joint of the articulated objects, we can observe different motion states of various objects. We generated 20 high-definition subsets, each consisting of RGB images, depth, camera trajectory, interactive object masks, and corresponding object state quantities relative to their "closed" state at each time step, from multiple camera trajectories and viewpoints. The data is obtained through the following steps: - The scene model is loaded, and the respective objects are selected, with motion trajectories set for each joint. - Keyframes are set for camera movement in the scene, and smooth trajectories are obtained through interpolation. - The simulator is then initiated, and the information captured by the camera at each moment is recorded. #### Scene Assets and Generation Pipeline for InterReal InterReal is primarily captured using the Polycam app on an Apple iPhone 15 Pro. We selected 8 everyday scenes and placed various interactive objects within each scene, including transformers, laptops, microwaves, and more. We recorded 8 videos, each at a frame rate of 5FPS, capturing 700 to 1000 frames per video. The dataset was processed via the following steps: - manual object movement and keyframe capture - OBJ file export and pose optimization using Polycam - conversion to a dataset containing RGB images and transformation matrices using Nerfstudio - mask generation for each object in each scene using SAM and corresponding prompts and state quantity labeling for certain keyframes. ## Citation If you find our work useful, please consider citing us! ```bibtex @article{livescene2024, title = {LiveScene: Language Embedding Interactive Radiance Fields for Physical Scene Rendering and Control}, author = {Delin Qu, Qizhi Chen, Pingrui Zhang, Xianqiang Gao, Bin Zhao, Zhigang Wang, Dong Wang, Xuelong Li}, year = {2024}, journal = {arXiv preprint arXiv:2406.16038} } ```