--- annotations_creators: [] language: en size_categories: - 10K//labels.npz`. | Field | Type | Description | |---|---|---| | `pct_free` | `FloatField` | Fraction of labeled voxels classified as Free (class 0) | | `pct_traversable` | `FloatField` | Fraction classified as Traversable (class 1) | | `pct_potentially_traversable` | `FloatField` | Fraction classified as Potentially Traversable (class 2) | | `pct_non_traversable` | `FloatField` | Fraction classified as Non-Traversable (class 3) | --- ## LIDAR_TOP `.fo3d` Scene Each LIDAR_TOP sample points to a `.fo3d` scene file containing three stacked point cloud layers: | Layer | Shading | Source | Description | |---|---|---|---| | `LiDAR` | `height` | `samples/LIDAR_TOP/*.pcd` | 230,400-point raw scan from Hesai OT128. Points coloured by Z elevation via the viridis colorscale | | `Traversability` | `rgb` | `samples/VOXEL_OVERLAY/*_voxels.pcd` | ~140K points from the same scan, coloured by traversability class. Each point's class is looked up from the voxel grid after transforming from LiDAR sensor frame to ego frame | | `Trajectory` | `rgb` | `samples/TRAJECTORY/*_traj.pcd` | All 200 ego-pose waypoints for the scene, transformed to the current frame's LiDAR sensor frame. Blue = past · White = current · Yellow = future | Camera configuration: `defaultCameraPosition = {x: -15, y: 0, z: 10}` (15 m behind, 10 m above), `up = "Z"` (NuScenes Z-up convention), set via `dataset.app_config.plugins["3d"]`. --- ## Traversability Classes | Class ID | Label | `terrain.label` value | Colour in viewer | |---|---|---|---| | 0 | Free | `free` | 🟢 green `rgb(50, 230, 50)` | | 1 | Traversable | `traversable` | 🟡 yellow `rgb(230, 230, 50)` | | 2 | Potentially Traversable | `potentially_traversable` | 🟠 orange `rgb(255, 153, 0)` | | 3 | Non-Traversable | `non_traversable` | 🔴 red `rgb(230, 25, 25)` | The voxel grid has shape `(200, 200, 16)` — a 40 m × 40 m × 3.2 m volume centred on the vehicle at 0.2 m resolution. Value `255` = unoccupied. --- ## Citation ```bibtex @inproceedings{park2026stone, title={STONE: A Scalable Multi-Modal Surround-View 3D Traversability Dataset for Off-Road Robot Navigation}, author={Park, Konyul and Kim, Daehun and Oh, Jiyong and Yu, Seunghoon and Park, Junseo and Park, Jaehyun and Shin, Hongjae and Cho, Hyungchan and Kim, Jungho and Choi, Jun Won}, booktitle={Proceedings of the IEEE International Conference on Robotics and Automation (ICRA)}, year={2026} } ```