Datasets:
Update dataset card: Add task category, tags, paper/project/code links, and sample usage
Browse filesThis PR significantly improves the dataset card for ByteCameraDepth by:
- Adding `task_categories: - depth-estimation` to the metadata, making the dataset discoverable by its primary AI task.
- Including relevant `tags: - robotics`, `- 3d`, and `- simulation` to further enhance searchability, reflecting the dataset's context in robotic manipulation and 3D geometry perception, often used for bridging the sim-to-real gap.
- Adding prominent links to the associated paper ([Manipulation as in Simulation: Enabling Accurate Geometry Perception in Robots](https://huggingface.co/papers/2509.02530)), the project page ([https://manipulation-as-in-simulation.github.io/](https://manipulation-as-in-simulation.github.io/)), and the main GitHub repository ([https://github.com/ByteDance-Seed/manip-as-in-sim-suite](https://github.com/ByteDance-Seed/manip-as-in-sim-suite)) for easy access to related resources.
- Incorporating a "Sample Usage" section with a code snippet from the GitHub README, demonstrating how to run depth inference using the Camera Depth Models (CDMs) trained with this dataset.
- Updating the BibTeX citation to include the Hugging Face paper URL for better traceability.
These updates provide a more comprehensive and organized overview for users exploring the ByteCameraDepth dataset.
@@ -1,9 +1,17 @@
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
4 |
|
5 |
# ByteCameraDepth Dataset
|
6 |
|
|
|
|
|
7 |
ByteCameraDepth is a multi-camera depth estimation dataset containing synchronized depth, color, and auxiliary data captured from various 3D cameras. The dataset provides comprehensive depth sensing from multiple cameras in various in-door scenarios, making it ideal for developing and evaluating depth estimation algorithms.
|
8 |
|
9 |
## Dataset Overview
|
@@ -26,6 +34,20 @@ cat recorded_data.tar.part.* | tar -xvf -
|
|
26 |
|
27 |
This will create a `recorded_data` folder containing all 39 recording sessions.
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
## Dataset Structure
|
30 |
|
31 |
### Archive Organization
|
@@ -142,7 +164,8 @@ If you use this dataset in your research, please cite:
|
|
142 |
Li, Xinyao and Chen, Jingxiao and Xu, Jiafeng and Yang, Yichu and Lin, Yunfeng and
|
143 |
Li, Xinghang and Yu, Yong and Zhang, Weinan and Kong, Tao and Kang, Bingyi},
|
144 |
journal={arXiv preprint},
|
145 |
-
year={2025}
|
|
|
146 |
}
|
147 |
```
|
148 |
|
|
|
1 |
---
|
2 |
license: cc-by-4.0
|
3 |
+
task_categories:
|
4 |
+
- depth-estimation
|
5 |
+
tags:
|
6 |
+
- robotics
|
7 |
+
- 3d
|
8 |
+
- simulation
|
9 |
---
|
10 |
|
11 |
# ByteCameraDepth Dataset
|
12 |
|
13 |
+
[Paper](https://huggingface.co/papers/2509.02530) | [Project Page](https://manipulation-as-in-simulation.github.io/) | [Code](https://github.com/ByteDance-Seed/manip-as-in-sim-suite)
|
14 |
+
|
15 |
ByteCameraDepth is a multi-camera depth estimation dataset containing synchronized depth, color, and auxiliary data captured from various 3D cameras. The dataset provides comprehensive depth sensing from multiple cameras in various in-door scenarios, making it ideal for developing and evaluating depth estimation algorithms.
|
16 |
|
17 |
## Dataset Overview
|
|
|
34 |
|
35 |
This will create a `recorded_data` folder containing all 39 recording sessions.
|
36 |
|
37 |
+
### Sample Usage
|
38 |
+
|
39 |
+
To run depth inference on RGB-D camera data using the CDM (Camera Depth Models) trained with this dataset:
|
40 |
+
|
41 |
+
```bash
|
42 |
+
cd cdm
|
43 |
+
python infer.py \
|
44 |
+
--encoder vitl \
|
45 |
+
--model-path /path/to/model.pth \
|
46 |
+
--rgb-image /path/to/rgb.jpg \
|
47 |
+
--depth-image /path/to/depth.png \
|
48 |
+
--output result.png
|
49 |
+
```
|
50 |
+
|
51 |
## Dataset Structure
|
52 |
|
53 |
### Archive Organization
|
|
|
164 |
Li, Xinyao and Chen, Jingxiao and Xu, Jiafeng and Yang, Yichu and Lin, Yunfeng and
|
165 |
Li, Xinghang and Yu, Yong and Zhang, Weinan and Kong, Tao and Kang, Bingyi},
|
166 |
journal={arXiv preprint},
|
167 |
+
year={2025},
|
168 |
+
url={https://huggingface.co/papers/2509.02530}
|
169 |
}
|
170 |
```
|
171 |
|