mirage18k
收藏资源简介:
Mirage 18k是一个新颖的多任务数据集,专为机器人学中的联合玻璃分割和玻璃感知单目深度估计而设计。该数据集包含18,353张手动标注的图像,覆盖38个独特的室内场景。它涵盖了多样化的真实世界玻璃结构,如室内窗格、磨砂门、窗户、透明门,并包含背景杂乱、显著性和动态障碍等挑战性条件。数据通过一个精心设计的协议获取:将每个玻璃窗格建模为3D平面表面,在窗格角落放置临时不透明标记以从局部邻域提取中值深度,并使用静止相机从完全相同的位置拍摄两次场景(一次带标记以获取准确深度,一次不带标记以获取清晰的RGB图像),最后通过逆深度空间的最小二乘优化完成重建。数据集按时间戳序列文件夹组织,包含RGB图像、单通道二进制玻璃分割掩码、16位原始传感器深度图像和16位平面地面真实玻璃深度图像。数据集分割严格保证分布外评估:分割训练集包含12,420个样本,分割测试集包含3,527个样本,深度和联合评估集包含2,406个具有配对原始传感器深度和地面真实深度的样本。该数据集适用于图像分割和深度估计任务,并已作为工作“SILICA: Repurposing Diffusion Priors for Joint Glass Segmentation and Depth Estimation”的一部分被IROS 2026接受发表。
Mirage 18k is a novel multi-task dataset designed for joint glass segmentation and glass-aware monocular depth estimation in robotics. This dataset contains 18,353 manually annotated images, covering 38 unique indoor scenes. It encompasses diverse real-world glass structures, such as indoor panes, frosted doors, windows, and clear doors, and includes challenging conditions like background clutter, salience, and dynamic obstacles. The data is acquired via a carefully designed protocol: each glass pane is modeled as a 3D planar surface, temporary opaque markers are placed at the corners of the panes to extract median depth from local neighborhoods, the scene is photographed twice from the exact same position using a stationary camera (once with markers to obtain accurate depth, once without markers to acquire clear RGB images), and final reconstruction is completed via least-squares optimization in inverse depth space. The dataset is organized into timestamp-sequenced folders, and contains RGB images, single-channel binary glass segmentation masks, 16-bit raw sensor depth images, and 16-bit planar ground-truth glass depth images. The dataset split strictly ensures out-of-distribution (OOD) evaluation: the segmentation training set contains 12,420 samples, the segmentation test set contains 3,527 samples, and the depth and joint evaluation set contains 2,406 samples with paired raw sensor depth and ground-truth depth. This dataset is applicable to image segmentation and depth estimation tasks, and has been accepted for publication at IROS 2026 as part of the work titled "SILICA: Repurposing Diffusion Priors for Joint Glass Segmentation and Depth Estimation".
数据集概述:Mirage 18k
Mirage 18k 是一个面向机器人的多任务数据集,专注于玻璃分割(Glass Segmentation)与玻璃感知的深度估计(Glass-Aware Monocular Depth Estimation)。该数据集已被 IROS 2026 会议接收,相关研究工作为《SILICA: Repurposing Diffusion Priors for Joint Glass Segmentation and Depth Estimation》。
- 规模与内容:包含 18,353 张手动标注图像,覆盖 38 个独特的室内场景,涉及真实的玻璃结构(如室内玻璃窗格、磨砂门、窗户、透明门)以及不含玻璃的负样本,场景中存在严重背景杂乱、显著性和动态障碍物。
- 语言:英文。
- 任务类别:图像分割(image-segmentation)与深度估计(depth-estimation)。
- 标签:玻璃分割、单目深度估计、机器人技术、透明表面感知、3D 映射。
数据采集与标注
采集协议:通过将每块玻璃窗格建模为 3D 平面来获取透明表面的真实深度。在窗格角点放置临时不透明标记,从局部邻域提取中值深度。固定摄像机在相同位姿下两次拍摄场景:一次带标记(获取准确深度),一次不带标记(获取清晰 RGB 图像)。最后通过逆深度空间的最小二乘优化完成重建。
场景分布:数据集覆盖了室内环境中多种透明玻璃结构,包括室内窗格、磨砂门、窗户、透明门及无玻璃的负样本。
数据组织与划分
数据集以时间戳命名的场景文件夹(共 38 个)组织,并在根目录提供拆分定义文本文件:
目录结构示例: text Mirage18k/ ├── seg_train_images.txt ├── seg_train_masks.txt ├── seg_test_images.txt ├── seg_test_masks.txt ├── depth_test_rs_rgb.txt ├── depth_test_binary_mask.txt ├── depth_test_rs_raw_depth_image.txt ├── depth_test_rs_gt_depth_image.txt └── YYYY-MM-DD_HH-MM-SS/ # 时间戳场景文件夹(共38个) ├── rs_images/ # 标准8位RGB图像 (.png) ├── binary_masks/ # 单通道二值玻璃分割掩码 (.png) ├── rs_depth_img/ # 16位原始传感器深度图像 (.png) └── rs_corresponding_gt/ # 16位平面真实玻璃深度 (.png)
数据集划分(确保测试集与训练集场景完全不重叠,实现严格的分布外评估):
- 分割训练集:12,420 个样本(对应
seg_train_images.txt和seg_train_masks.txt)。 - 分割测试集:3,527 个样本(对应
seg_test_images.txt和seg_test_masks.txt)。 - 深度与联合评估集:2,406 个样本,包含成对的原始传感器深度和真实深度(对应
depth_test_*.txt系列文件)。
快速体验
无需下载完整数据集,可通过 GitHub 的 example/ 目录(https://github.com/rtarun1/Silica/tree/main/example)直接获取样本图像、原始深度和相机内参文件进行快速独立推理。
相关资源
- 模型检查点:SILICA 模型卡(https://huggingface.co/rtarun1/silica-v1-0)
- 代码仓库:GitHub(https://github.com/rtarun1/Silica)
- 项目页面:https://silica-mirage.github.io/




