Datasets:
Improve dataset card: Add task categories, paper, code, project page, and sample usage
Browse filesThis pull request enhances the dataset card for SAGE-3D Collision Mesh by:
- Adding `task_categories: ['robotics', 'image-to-3d']` to the YAML metadata for better discoverability.
- Including direct links to the associated paper ([Towards Physically Executable 3D Gaussian for Embodied Navigation](https://huggingface.co/papers/2510.21307)), project page ([https://sage-3d.github.io](https://sage-3d.github.io)), and GitHub repository ([https://github.com/Galery23/SAGE-3D_Official](https://github.com/Galery23/SAGE-3D_Official)) at the top of the README.
- Introducing a "Sample Usage" section, demonstrating how to clone this dataset and integrate its collision meshes into USDA scene files using the `sage3d_usda_builder.py` script from the official GitHub repository, including necessary context for Isaac Sim.
These changes provide more complete information for users and integrate the dataset more effectively within the Hugging Face ecosystem.
|
@@ -1,8 +1,14 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-4.0
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
| 4 |
# SAGE-3D Collision Mesh: Physics-Enabled Collision Bodies for 3D Gaussian Scenes
|
| 5 |
|
|
|
|
|
|
|
| 6 |
High-precision collision geometry dataset extracted from 1,000 indoor Mesh scenes, enabling physically accurate navigation and interaction in virtual environments.
|
| 7 |
|
| 8 |
<div align="center">
|
|
@@ -60,11 +66,53 @@ Collision_Mesh/
|
|
| 60 |
└── ...
|
| 61 |
```
|
| 62 |
|
|
|
|
| 63 |
|
|
|
|
| 64 |
|
| 65 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
|
|
|
|
| 67 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 68 |
|
| 69 |
## 🔗 Related Datasets
|
| 70 |
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-4.0
|
| 3 |
+
task_categories:
|
| 4 |
+
- robotics
|
| 5 |
+
- image-to-3d
|
| 6 |
---
|
| 7 |
+
|
| 8 |
# SAGE-3D Collision Mesh: Physics-Enabled Collision Bodies for 3D Gaussian Scenes
|
| 9 |
|
| 10 |
+
[Paper](https://huggingface.co/papers/2510.21307) | [Project Page](https://sage-3d.github.io) | [Code](https://github.com/Galery23/SAGE-3D_Official)
|
| 11 |
+
|
| 12 |
High-precision collision geometry dataset extracted from 1,000 indoor Mesh scenes, enabling physically accurate navigation and interaction in virtual environments.
|
| 13 |
|
| 14 |
<div align="center">
|
|
|
|
| 66 |
└── ...
|
| 67 |
```
|
| 68 |
|
| 69 |
+
---
|
| 70 |
|
| 71 |
+
## 💡 Sample Usage
|
| 72 |
|
| 73 |
+
This dataset provides physics-enabled collision bodies in USD format, which are crucial for enabling physically accurate navigation and interaction in virtual environments. These meshes are primarily used to integrate with 3D Gaussian Splatting (3DGS) scenes (e.g., from [spatialverse/SAGE-3D_InteriorGS_usdz](https://huggingface.co/datasets/spatialverse/SAGE-3D_InteriorGS_usdz)) to create complete USDA scene files compatible with physics simulation platforms like NVIDIA Isaac Sim.
|
| 74 |
+
|
| 75 |
+
### 1. Download the SAGE-3D Collision Mesh Dataset
|
| 76 |
+
|
| 77 |
+
First, clone this dataset repository using `git lfs`:
|
| 78 |
+
|
| 79 |
+
```bash
|
| 80 |
+
git lfs install
|
| 81 |
+
git clone https://huggingface.co/datasets/spatialverse/SAGE-3D_Collision_Mesh
|
| 82 |
+
```
|
| 83 |
|
| 84 |
+
### 2. Prepare Isaac Sim Environment
|
| 85 |
|
| 86 |
+
The full SAGE-3D project, including the use of these collision meshes, relies on NVIDIA Isaac Sim. Please refer to the [official SAGE-3D GitHub repository](https://github.com/Galery23/SAGE-3D_Official#isaac-sim-setup) for detailed instructions on setting up Isaac Sim (version 5.0+).
|
| 87 |
+
|
| 88 |
+
### 3. Build USDA Scene Files with Collision Data
|
| 89 |
+
|
| 90 |
+
Once you have downloaded this collision mesh dataset and obtained the USDZ scene files (e.g., from [spatialverse/SAGE-3D_InteriorGS_usdz](https://huggingface.co/datasets/spatialverse/SAGE-3D_InteriorGS_usdz)), you can integrate the collision bodies into USDA scene files using the `sage3d_usda_builder.py` script provided in the [SAGE-3D Official repository](https://github.com/Galery23/SAGE-3D_Official).
|
| 91 |
+
|
| 92 |
+
```bash
|
| 93 |
+
# Example command to build USDA Scene Files
|
| 94 |
+
python Code/benchmark/scene_data/sage3d_usda_builder.py \
|
| 95 |
+
--usdz-dir /path/to/usdz \
|
| 96 |
+
--out-dir /path/to/output/usda \
|
| 97 |
+
--template Data/template.usda \
|
| 98 |
+
--usdz-placeholder "@usdz_root[gauss.usda]@" \
|
| 99 |
+
--collision-placeholder "@collision_root@" \
|
| 100 |
+
--usdz-path-template "/path/to/usdz/{scene_id}.usdz[gauss.usda]" \
|
| 101 |
+
--collision-path-template "/path/to/Collision_Mesh/{scene_id}/{scene_id}_collision.usd" \
|
| 102 |
+
--overwrite
|
| 103 |
+
```
|
| 104 |
+
|
| 105 |
+
**Parameters:**
|
| 106 |
+
- `--usdz-dir`: Directory containing USDZ scene files (e.g., from [spatialverse/SAGE-3D_InteriorGS_usdz](https://huggingface.co/datasets/spatialverse/SAGE-3D_InteriorGS_usdz))
|
| 107 |
+
- `--out-dir`: Output directory for USDA files
|
| 108 |
+
- `--template`: Path to USDA template file (found in the [SAGE-3D_Official GitHub repository](https://github.com/Galery23/SAGE-3D_Official))
|
| 109 |
+
- `--usdz-placeholder`: Placeholder string in template for USDZ reference (default: `@usdz_root[gauss.usda]@`)
|
| 110 |
+
- `--collision-placeholder`: Placeholder string in template for collision payload (default: `@collision_root@`)
|
| 111 |
+
- `--usdz-path-template`: Template for USDZ reference path (use `{scene_id}` as placeholder)
|
| 112 |
+
- `--collision-path-template`: Template for collision payload path (use `{scene_id}` as placeholder to point to files in this dataset)
|
| 113 |
+
- `--overwrite`: Overwrite existing USDA files
|
| 114 |
+
|
| 115 |
+
---
|
| 116 |
|
| 117 |
## 🔗 Related Datasets
|
| 118 |
|