Datasets:
Formats:
text
Languages:
English
Size:
10K - 100K
Tags:
glass-segmentation
monocular-depth-estimation
robotics
transparent-surface-perception
3d-mapping
image
add readme
#2
by eccentricOrange - opened
- README.md +103 -0
- acquisition_protocol.png +3 -0
- scene_distribution.jpg +3 -0
README.md
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
tags:
|
| 5 |
+
- glass-segmentation
|
| 6 |
+
- monocular-depth-estimation
|
| 7 |
+
- robotics
|
| 8 |
+
- transparent-surface-perception
|
| 9 |
+
- 3d-mapping
|
| 10 |
+
- image
|
| 11 |
+
size_categories:
|
| 12 |
+
- 10K<n<100K
|
| 13 |
+
task_categories:
|
| 14 |
+
- image-segmentation
|
| 15 |
+
- depth-estimation
|
| 16 |
+
pretty_name: Mirage 18k Dataset
|
| 17 |
+
---
|
| 18 |
+
|
| 19 |
+
# Mirage 18k: Dataset for Glass Segmentation & Depth Estimation
|
| 20 |
+
|
| 21 |
+
**Mirage 18k** is a novel, multi-task dataset comprising **18,353 manually annotated images** across **38 unique indoor scenes**, designed specifically for joint glass segmentation and glass-aware monocular depth estimation in robotics.
|
| 22 |
+
|
| 23 |
+
It contains diverse real-world glass structures (indoor panes, frosted doors, windows, clear doors) with severe background clutter, saliency, and dynamic obstacles.
|
| 24 |
+
|
| 25 |
+
* **Model Checkpoint:** [SILICA Model Card](https://huggingface.co/rtarun1/silica-v1-0)
|
| 26 |
+
* **Code Repository:** [GitHub Repository (rtarun1/Silica)](https://github.com/rtarun1/Silica)
|
| 27 |
+
* **Project Page:** [silica-mirage.github.io](https://silica-mirage.github.io/)
|
| 28 |
+
* **Example Data:** [GitHub `example/` Directory](https://github.com/rtarun1/Silica/tree/main/example)
|
| 29 |
+
|
| 30 |
+
---
|
| 31 |
+
|
| 32 |
+
## Dataset Acquisition & Overview
|
| 33 |
+
|
| 34 |
+
### Acquisition Protocol
|
| 35 |
+
Ground-truth depth for transparent surfaces is captured by modeling each glass pane as a 3D planar surface. Temporary opaque markers are placed at pane corners, and their median depth is extracted from local neighborhoods. A stationary camera records the scene twice—once with markers to capture accurate depth, and once without markers from the exact same pose to obtain clear RGB imagery. Reconstructions are finalized via least-squares optimization in inverse depth space.
|
| 36 |
+
|
| 37 |
+
<p align="center">
|
| 38 |
+
<img src="acquisition_protocol.png" alt="Mirage 18k Dataset Acquisition Protocol" width="800"/>
|
| 39 |
+
</p>
|
| 40 |
+
|
| 41 |
+
### Diversity & Scene Distribution
|
| 42 |
+
Mirage 18k covers diverse distributions of transparent glass structures in wild indoor environments, including indoor panes, frosted doors, windows, clear doors, and glass-free negative samples.
|
| 43 |
+
|
| 44 |
+
<p align="center">
|
| 45 |
+
<img src="scene_distribution.jpg" alt="Distribution of Glass Types in Mirage 18k" width="600"/>
|
| 46 |
+
</p>
|
| 47 |
+
|
| 48 |
+
---
|
| 49 |
+
|
| 50 |
+
## Repository Structure
|
| 51 |
+
|
| 52 |
+
The dataset is organized into timestamped sequence folders representing individual capture scenes, accompanied by split definition text files at the root directory:
|
| 53 |
+
|
| 54 |
+
```text
|
| 55 |
+
Mirage18k/
|
| 56 |
+
├── seg_train_images.txt
|
| 57 |
+
├── seg_train_masks.txt
|
| 58 |
+
├── seg_test_images.txt
|
| 59 |
+
├── seg_test_masks.txt
|
| 60 |
+
├── depth_test_rs_rgb.txt
|
| 61 |
+
├── depth_test_binary_mask.txt
|
| 62 |
+
├── depth_test_rs_raw_depth_image.txt
|
| 63 |
+
├── depth_test_rs_gt_depth_image.txt
|
| 64 |
+
└── YYYY-MM-DD_HH-MM-SS/ # Timestamped scene folders (38 total)
|
| 65 |
+
├── rs_images/ # Standard 8-bit RGB images (.png)
|
| 66 |
+
├── binary_masks/ # 1-channel binary glass segmentation masks (.png)
|
| 67 |
+
├── rs_depth_img/ # 16-bit raw sensor depth images (.png)
|
| 68 |
+
└── rs_corresponding_gt/ # 16-bit planar ground-truth glass depth (.png)
|
| 69 |
+
|
| 70 |
+
```
|
| 71 |
+
|
| 72 |
+
### Dataset Splits
|
| 73 |
+
|
| 74 |
+
To guarantee strict out-of-distribution evaluation, scenes included in test splits do not overlap with training splits.
|
| 75 |
+
|
| 76 |
+
* **Segmentation Train Split:** `12,420` samples (`seg_train_images.txt`, `seg_train_masks.txt`)
|
| 77 |
+
|
| 78 |
+
|
| 79 |
+
* **Segmentation Test Split:** `3,527` samples (`seg_test_images.txt`, `seg_test_masks.txt`)
|
| 80 |
+
|
| 81 |
+
|
| 82 |
+
* **Depth & Joint Evaluation Split:** `2,406` samples with paired raw sensor depth and ground-truth depth (`depth_test_*.txt`)
|
| 83 |
+
|
| 84 |
+
|
| 85 |
+
|
| 86 |
+
**Quick Test:** To run quick standalone inference on a sample subset without downloading the full dataset, check out the sample images, raw depth, and camera intrinsic files available directly in our [GitHub `example/` folder](https://github.com/rtarun1/Silica/tree/master/example).
|
| 87 |
+
|
| 88 |
+
|
| 89 |
+
---
|
| 90 |
+
|
| 91 |
+
## Citation
|
| 92 |
+
|
| 93 |
+
If you use the Mirage 18k dataset in your research, please cite:
|
| 94 |
+
|
| 95 |
+
```bibtex
|
| 96 |
+
@inproceedings{tarun2026silica,
|
| 97 |
+
title={SILICA: Repurposing Diffusion Priors for Joint Glass Segmentation and Depth Estimation},
|
| 98 |
+
author={R., Tarun and Verma, Anuj and Nanwani, Laksh and Garg, Sourav and Krishna, K. Madhava},
|
| 99 |
+
booktitle={IEEE/RSJ International Conference on Intelligent Robots and Systems (IROS)},
|
| 100 |
+
year={2026},
|
| 101 |
+
note={Accepted for publication}
|
| 102 |
+
}
|
| 103 |
+
```
|
acquisition_protocol.png
ADDED
|
Git LFS Details
|
scene_distribution.jpg
ADDED
|
Git LFS Details
|