Datasets:
File size: 4,742 Bytes
dc914e7 699090b 05a1fd1 dc914e7 05a1fd1 dc914e7 05a1fd1 dc914e7 05a1fd1 dc914e7 05a1fd1 dc914e7 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 | ---
license: cc-by-nc-4.0
task_categories:
- image-segmentation
- object-detection
- depth-estimation
tags:
- computer-vision
- synthetic-data
- robotics
- autonomous-driving
- amr
- slam
- blender
- procedural-generation
pretty_name: DataFurnace AMR Synthetic Dataset
size_categories:
- n<1K
---
# 🏭 DataFurnace: AMR & SLAM Synthetic Evaluation Dataset

*Fully synchronized multi-pass rendering (RGB, Depth, Semantic Mask, and 3D Bounding Box).*
---
## 📌 Overview
**DataFurnace** is a procedurally generated synthetic dataset designed for evaluating and training:
- Autonomous Mobile Robots (AMR)
- Automated Guided Vehicles (AGV)
- SLAM / VIO / 3D Perception algorithms
- Warehouse robotics navigation systems
All ground truth is generated directly from the underlying 3D scene graph, ensuring **deterministic pixel-level and millimeter-level accuracy** across all modalities.
**No generative AI is used**, eliminating copyright, privacy, and hallucination concerns.
---
## 🚀 Key Features
### 🔹 1. Perfectly Synchronized Multi-Pass Rendering
Each frame contains fully aligned multi-modal outputs:
- **RGB** — Physically lit color images
- **Depth** — True Z-depth with LiDAR noise simulation
- **Semantic Mask** — Pixel-perfect class segmentation (Floor, Rack, Box, Pallet)
- **3D Bounding Box (JSON)** — 6DoF absolute coordinates and dimensions
- **Costmap** — 2D top-down occupancy grid (generated per scene/mode)
### 🔹 2. Extreme Hazard Simulation for Robustness Testing
To stress-test SLAM and perception systems, four lighting conditions are provided:
- **NORMAL** — Standard warehouse lighting
- **BROKEN** — Random darkened areas / flickering lights
- **GLARE** — Volumetric scattering, lens flare, white-out
- **EDGE_CASE** — Foreground blackout + background overexposure
---
## 📂 Dataset Structure
This repository contains curated sample sequences generated by the DataFurnace pipeline.
- **5 Unique Warehouse Environments**
- **Layout Variations** (Normal / Anomaly with Scattered Obstacles)
- **4 Lighting Conditions** per environment
- Sequential Frames per sequence (from robot cameras: Front/Back/Left/Right)
### Directory Layout (Example)
```text
dataset/
└── Warehouse_Scene_0001/
└── normal/
└── NORMAL/
├── Warehouse_Scene_0001_NORMAL_Cam_Front_F001_Normal_RGB.png
├── Warehouse_Scene_0001_NORMAL_Cam_Front_F001_Normal_Depth.png
├── Warehouse_Scene_0001_NORMAL_Cam_Front_F001_Normal_Mask.png
├── Warehouse_Scene_0001_NORMAL_Cam_Front_F001_Normal_BBox.json
└── ...
```
### 🧠 3D Bounding Box (JSON) Format
The dataset provides absolute 3D spatial data (6DoF), not just 2D projection. Camera poses and objects' Volumetric Centers are perfectly recorded.
JSON
{
"frame": 1,
"lighting_mode": "BROKEN",
"camera_name": "Cam_Front",
"camera_pose": {
"location": {"x": 0.0, "y": -10.0, "z": 0.4},
"rotation": {"x": 1.5708, "y": 0.0, "z": 0.0}
},
"objects": [
{
"class": "Box",
"name": "ANOMALY_CardboardBox.248",
"location": [-0.3007, 1.0295, 0.132],
"rotation_euler": [0.0001, 0.0, -1.8494],
"dimensions": [0.4266, 0.3861, 0.2639]
}
]
}
### 📥 How to Use (Hugging Face Datasets)
Python
from datasets import load_dataset
# Load the dataset (Example usage)
ds = load_dataset("jp-cypress/DataFurnace-AMR")
### 🛠️ Verification Tools
Utility Python scripts are included in the scripts/ directory to help you visualize the ground truth accuracy without affecting the raw data.
Bash
# 1. Visualize 3D Bounding Boxes mathematically projected onto RGB images
python scripts/draw_bbox_overlay.py --input ./dataset/Warehouse_Scene_0001/normal/NORMAL
# 2. Generate a zapping GIF to easily review multi-modal alignment
python scripts/generate_promo_gif.py --input ./dataset/... --overlay ./output_bbox --out final.gif
### 📜 License
This dataset is released under CC BY-NC 4.0.
Commercial use is not permitted without explicit permission.
### 🌐 Citation
If you use DataFurnace in academic or industrial research, please cite this repository:
@dataset{datafurnace2026,
author = {2.5D Asset Factory},
title = {DataFurnace: AMR & SLAM Synthetic Evaluation Dataset},
year = {2026},
publisher = {Hugging Face},
url = {https://huggingface.co/datasets/jp-cypress/DataFurnace-AMR}
} |