robbyant/mdm_depth
收藏资源简介:
--- license: apache-2.0 task_categories: - depth-estimation language: - en tags: - 3D - 3d - depth - robotics pretty_name: LingBot-Depth Dataset --- # LingBot-Depth Dataset Self-curated RGB-D dataset for training [LingBot-Depth](https://github.com/Robbyant/lingbot-depth), a masked depth modeling approach ([arxiv:2601.17895](https://huggingface.co/papers/2601.17895)). Each sample contains an RGB image, raw sensor depth, and ground truth depth.  **Total size:** 2.71 TB **Depth scale:** millimeters (mm), stored as 16-bit PNG **License:** [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) --- ## Sub-datasets | Name | Description | Samples | |------|-------------|--------:| | **RobbyReal** | Real-world indoor scenes captured with multiple RGB-D cameras | 1,400,000 | | **RobbyVla** | Real-world data collected during VLA (Vision-Language-Action) robot manipulation tasks | 580,960 | | **RobbySim** | Simulated data rendered from two camera viewpoints | 999,264 | | **RobbySimVal** | Validation split of simulated data | 38,976 | | **Total** | | **3,019,200** | --- ## Directory Structure ### RobbyReal ``` RobbyReal/ └── <scene_id>/ # e.g. 00001_01_room ├── orbbec_335_<seq>/ │ ├── color/ # RGB images │ ├── gtdepth/ # Ground truth depth │ ├── rawdepth/ # Raw sensor depth │ └── intrinsic.txt ├── orbbec_335L_<seq>/ │ ├── color/ │ ├── gtdepth/ │ ├── rawdepth/ │ └── intrinsic.txt ├── realsense_D415_<seq>/ │ ├── color/ │ ├── gtdepth/ │ ├── rawdepth/ │ └── intrinsic.txt ├── realsense_D435_<seq>/ │ ├── color/ │ ├── gtdepth/ │ ├── rawdepth/ │ └── intrinsic.txt └── realsense_D455_<seq>/ ├── color/ ├── gtdepth/ ├── rawdepth/ └── intrinsic.txt ``` ### RobbyVla Data collected during VLA robot manipulation tasks on two robot platforms. ``` RobbyVla/ ├── franka/ # Franka robot arm │ └── <seq>/ │ ├── left_realsense405/ │ │ ├── color/ │ │ ├── gtdepth/ │ │ ├── rawdepth/ │ │ └── intrinsic.txt │ └── right_realsense405/ │ ├── color/ │ ├── gtdepth/ │ ├── rawdepth/ │ └── intrinsic.txt └── ur7e/ # UR7e robot arm └── <seq>/ ├── left_realsense405/ │ ├── color/ │ ├── gtdepth/ │ ├── rawdepth/ │ └── intrinsic.txt └── right_realsense405/ ├── color/ ├── gtdepth/ ├── rawdepth/ └── intrinsic.txt ``` ### RobbySim Simulated data rendered from two camera viewpoints: `object_view` and `rrt_view`. ``` RobbySim/ ├── intrinsics.txt ├── object_view/ │ └── <scene_id>/<cam_id>/ # e.g. xxxx/00, xxxx/01 │ ├── 0001_cam0_left.jpg # RGB image │ ├── 0001_cam0_depth.png # Ground truth depth │ └── 0001_cam0_rmd2c.png # Raw depth └── rrt_view/ └── <scene_id>/<cam_id>/ ├── 0001_cam0_left.jpg ├── 0001_cam0_depth.png └── 0001_cam0_rmd2c.png ``` ### RobbySimVal Validation split of simulated data. ``` RobbySimVal/ └── val_view/ └── <scene_id>/<cam_id>/ # e.g. xxxx/00, xxxx/01 ├── intrinsics.txt ├── 0001_cam0_rgb.left.jpg # RGB image ├── 0001_cam0_depth_left.png # Ground truth depth └── 0001_cam0_rawdepth.left.png # Raw depth ``` --- ## File Description | File/Folder | Description | |-------------|-------------| | `color/` / `*_rgb*.jpg` | RGB images | | `gtdepth/` / `*_depth*.png` | Ground truth depth maps (16-bit PNG, unit: mm) | | `rawdepth/` / `*_rawdepth*.png` / `*_rmd2c*.png` | Raw depth from sensor before post-processing (16-bit PNG, unit: mm) | | `intrinsic.txt` / `intrinsics.txt` | Camera intrinsic parameters |
许可证:Apache-2.0 任务类别: - 深度估计(depth-estimation) 语言: - 英语 标签: - 3D - 3D - 深度 - 机器人学 数据集名称:LingBot-Depth 数据集 # LingBot-Depth 数据集 本数据集为自研RGB-D数据集,用于训练[LingBot-Depth](https://github.com/Robbyant/lingbot-depth)——一种掩码深度建模方法([arxiv:2601.17895](https://huggingface.co/papers/2601.17895))。每个数据样本均包含RGB图像、传感器原始深度图与真值深度图。  **总大小:** 2.71 TB **深度单位:** 毫米(mm),以16位PNG格式存储 **许可协议:** [CC BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) --- ## 子数据集 | 数据集名称 | 描述 | 样本数量 | |------|-------------|--------:| | **RobbyReal** | 采用多台RGB-D相机采集的真实世界室内场景数据 | 1,400,000 | | **RobbyVla** | 视觉-语言-行动(Vision-Language-Action, VLA)机器人操作任务中采集的真实世界数据 | 580,960 | | **RobbySim** | 从两个相机视角渲染得到的仿真数据 | 999,264 | | **RobbySimVal** | 仿真数据的验证划分集 | 38,976 | | **总计** | | **3,019,200** | --- ## 目录结构 ### RobbyReal RobbyReal/ └── <场景ID>/ # 例如:00001_01_room ├── orbbec_335_<序列编号>/ │ ├── color/ # RGB图像 │ ├── gtdepth/ # 真值深度图 │ ├── rawdepth/ # 传感器原始深度图 │ └── intrinsic.txt ├── orbbec_335L_<序列编号>/ │ ├── color/ │ ├── gtdepth/ │ ├── rawdepth/ │ └── intrinsic.txt ├── realsense_D415_<序列编号>/ │ ├── color/ │ ├── gtdepth/ │ ├── rawdepth/ │ └── intrinsic.txt ├── realsense_D435_<序列编号>/ │ ├── color/ │ ├── gtdepth/ │ ├── rawdepth/ │ └── intrinsic.txt └── realsense_D455_<序列编号>/ ├── color/ ├── gtdepth/ ├── rawdepth/ └── intrinsic.txt ### RobbyVla 在两个机器人平台上执行VLA(视觉-语言-行动)机器人操作任务时采集的数据。 RobbyVla/ ├── franka/ # Franka 机械臂 │ └── <序列编号>/ │ ├── left_realsense405/ │ │ ├── color/ │ │ ├── gtdepth/ │ │ ├── rawdepth/ │ │ └── intrinsic.txt │ └── right_realsense405/ │ ├── color/ │ ├── gtdepth/ │ ├── rawdepth/ │ └── intrinsic.txt └── ur7e/ # UR7e 机械臂 └── <序列编号>/ ├── left_realsense405/ │ ├── color/ │ ├── gtdepth/ │ ├── rawdepth/ │ └── intrinsic.txt └── right_realsense405/ ├── color/ ├── gtdepth/ ├── rawdepth/ └── intrinsic.txt ### RobbySim 从`object_view`(物体视角)与`rrt_view`(快速随机树视角)两个相机视角渲染得到的仿真数据。 RobbySim/ ├── intrinsics.txt ├── object_view/ │ └── <场景ID>/<相机ID>/ # 例如:xxxx/00、xxxx/01 │ ├── 0001_cam0_left.jpg # RGB图像 │ ├── 0001_cam0_depth.png # 真值深度图 │ └── 0001_cam0_rmd2c.png # 原始深度图 └── rrt_view/ └── <场景ID>/<相机ID>/ ├── 0001_cam0_left.jpg ├── 0001_cam0_depth.png └── 0001_cam0_rmd2c.png ### RobbySimVal 仿真数据的验证划分集。 RobbySimVal/ └── val_view/ └── <场景ID>/<相机ID>/ # 例如:xxxx/00、xxxx/01 ├── intrinsics.txt ├── 0001_cam0_rgb.left.jpg # RGB图像 ├── 0001_cam0_depth_left.png # 真值深度图 └── 0001_cam0_rawdepth.left.png # 原始深度图 --- ## 文件说明 | 文件/文件夹 | 说明 | |-------------|-------------| | `color/` / `*_rgb*.jpg` | RGB图像 | | `gtdepth/` / `*_depth*.png` | 真值深度图(16位PNG格式,单位:毫米) | | `rawdepth/` / `*_rawdepth*.png` / `*_rmd2c*.png` | 后处理前的传感器原始深度图(16位PNG格式,单位:毫米) | | `intrinsic.txt` / `intrinsics.txt` | 相机内参参数 |




