Commit ·
6eba04e
1
Parent(s): b7a9bea
Polish dataset card with Foxglove preview
Browse files- DATA_LICENSE.md +19 -0
- README.md +78 -14
- dataset.yaml +4 -0
- docs/assets/readme/dataset_workflow_overview.png +3 -0
- docs/assets/readme/foxglove_all_modalities.gif +3 -0
- docs/assets/readme/foxglove_imu_plot.gif +3 -0
- docs/assets/readme/foxglove_lidar.gif +3 -0
- docs/assets/readme/foxglove_odometry_path.gif +3 -0
- docs/assets/readme/foxglove_rgb_depth.gif +3 -0
- docs/assets/readme/foxglove_tof.gif +3 -0
- docs/assets/readme/odometry_dataset_hero.png +3 -0
DATA_LICENSE.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Dataset License
|
| 2 |
+
|
| 3 |
+
The dataset files are licensed under the Creative Commons Attribution-NonCommercial 4.0 International License (CC BY-NC 4.0).
|
| 4 |
+
|
| 5 |
+
This applies to:
|
| 6 |
+
|
| 7 |
+
- raw ROSBag files hosted on Hugging Face;
|
| 8 |
+
- metadata indexes and YAML metadata files;
|
| 9 |
+
- calibration files;
|
| 10 |
+
- quality reports;
|
| 11 |
+
- dataset preview images, GIFs, and other media assets.
|
| 12 |
+
|
| 13 |
+
You may share and adapt the dataset for non-commercial purposes if you provide appropriate attribution. Commercial use is not permitted under this dataset license.
|
| 14 |
+
|
| 15 |
+
Full license text:
|
| 16 |
+
|
| 17 |
+
https://creativecommons.org/licenses/by-nc/4.0/
|
| 18 |
+
|
| 19 |
+
Source code and documentation tooling in this repository are licensed separately under the MIT License. See `LICENSE`.
|
README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
| 1 |
---
|
| 2 |
pretty_name: Odometry ROSBag Dataset
|
| 3 |
-
license:
|
| 4 |
task_categories:
|
| 5 |
- robotics
|
| 6 |
tags:
|
|
@@ -22,29 +22,56 @@ configs:
|
|
| 22 |
data_files: metadata/topics.parquet
|
| 23 |
---
|
| 24 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
# Odometry ROSBag Dataset
|
| 26 |
|
| 27 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
|
| 29 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 30 |
|
| 31 |
## Quick Facts
|
| 32 |
|
| 33 |
| Item | Value |
|
| 34 |
| --- | --- |
|
| 35 |
| Sessions | 52 |
|
| 36 |
-
| Total duration |
|
| 37 |
| Raw ROSBag size | 301.20 GiB |
|
| 38 |
| Session index rows | 52 |
|
| 39 |
| Topic index rows | 663 |
|
| 40 |
| Sessions with all indexed sensor groups | 26/52 |
|
| 41 |
| Raw format | ROS1 `bag.bag` files |
|
| 42 |
| Timestamp unit | nanoseconds (`ns`) |
|
|
|
|
| 43 |
|
| 44 |
|
| 45 |
## Use This Dataset
|
| 46 |
|
| 47 |
-
|
| 48 |
|
| 49 |
```python
|
| 50 |
from huggingface_hub import snapshot_download
|
|
@@ -53,6 +80,7 @@ snapshot_download(
|
|
| 53 |
repo_id="ly041021/odom_dataset",
|
| 54 |
repo_type="dataset",
|
| 55 |
allow_patterns=["metadata/**", "quality/**", "calibration/**", "dataset.yaml"],
|
|
|
|
| 56 |
)
|
| 57 |
```
|
| 58 |
|
|
@@ -73,10 +101,46 @@ from huggingface_hub import snapshot_download
|
|
| 73 |
snapshot_download(
|
| 74 |
repo_id="ly041021/odom_dataset",
|
| 75 |
repo_type="dataset",
|
| 76 |
-
allow_patterns=["raw/sessions/2026-
|
|
|
|
| 77 |
)
|
| 78 |
```
|
| 79 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
## Data Layout
|
| 81 |
|
| 82 |
```text
|
|
@@ -90,8 +154,8 @@ metadata/tof_sensor.yaml # TOFSense-M cascade metadata
|
|
| 90 |
quality/reports/ # generated quality reports
|
| 91 |
calibration/robot_v1_template/ # calibration files
|
| 92 |
docs/foxglove_visualization.md # Foxglove visualization guide
|
| 93 |
-
scripts/foxglove_visual.py
|
| 94 |
-
examples/foxglove/visual_demo.bag
|
| 95 |
```
|
| 96 |
|
| 97 |
## Sensor Coverage
|
|
@@ -132,20 +196,20 @@ examples/foxglove/visual_demo.bag # ready-to-open Foxglove example
|
|
| 132 |
|
| 133 |
## Quality Notes
|
| 134 |
|
| 135 |
-
- Sessions missing RGB color topics: 24
|
| 136 |
-
- Sessions missing ToF topic: 2
|
| 137 |
- ToF sensor metadata: six-node Nooploop TOFSense-M cascade, UART query mode, 8x8 pixels per node. See `metadata/tof_sensor.yaml` and `metadata/tof_sensor.md`.
|
| 138 |
- ToF validity report: 52,208,469/67,587,392 valid pixels (77.25%).
|
| 139 |
- `quality/reports/topic_completeness_and_tof_validity.md` contains the detailed per-session report.
|
| 140 |
- `calibration/robot_v1_template/` contains MAVROS IMU, MID360 LiDAR, D430 infrared stereo camera calibration, and the explicit ToF extrinsic status. Use the recorded `/camera/*/camera_info` topics for RealSense color/depth intrinsics. Fixed ToF extrinsic is not available in this dataset version.
|
| 141 |
|
| 142 |
-
##
|
| 143 |
|
| 144 |
-
`scripts/foxglove_visual.py` creates Foxglove-ready visualization bags with compressed TOFSense-M overview images, optional RGB topics, standard `sensor_msgs/PointCloud2` output at `/foxglove/livox/points`, accumulated `nav_msgs/Path` output at `/foxglove/odom/path`, MAVROS IMU topics, and odometry TF. In Foxglove, use `Fixed frame = odom` and `Display frame = odom` for the 3D panel.
|
| 145 |
|
| 146 |
## Limitations
|
| 147 |
|
| 148 |
-
- No train/validation/test split is defined in this
|
| 149 |
- Images, depth frames, infrared frames, lidar point clouds, and odometry streams are not exported as separate training files.
|
| 150 |
- Topic scanning and raw bag decoding require a ROS1 environment with the `rosbag` Python package.
|
| 151 |
- Raw bags are large. Start from the Parquet indexes, then download only the sessions you need.
|
|
@@ -162,7 +226,7 @@ examples/foxglove/visual_demo.bag # ready-to-open Foxglove example
|
|
| 162 |
|
| 163 |
## License
|
| 164 |
|
| 165 |
-
|
| 166 |
|
| 167 |
---
|
| 168 |
|
|
|
|
| 1 |
---
|
| 2 |
pretty_name: Odometry ROSBag Dataset
|
| 3 |
+
license: cc-by-nc-4.0
|
| 4 |
task_categories:
|
| 5 |
- robotics
|
| 6 |
tags:
|
|
|
|
| 22 |
data_files: metadata/topics.parquet
|
| 23 |
---
|
| 24 |
|
| 25 |
+
<p align="center">
|
| 26 |
+
<img src="docs/assets/readme/odometry_dataset_hero.png" alt="Odometry ROSBag Dataset overview" width="100%">
|
| 27 |
+
</p>
|
| 28 |
+
|
| 29 |
# Odometry ROSBag Dataset
|
| 30 |
|
| 31 |
+
A multi-sensor ROS1 dataset for odometry research, ToF sensing, inertial analysis, and reproducible Foxglove visualization.
|
| 32 |
+
|
| 33 |
+
<p align="center">
|
| 34 |
+
<a href="https://github.com/Ly041021/odom_dataset"><b>GitHub Repository</b></a> ·
|
| 35 |
+
<a href="#foxglove-visualization-sample"><b>Foxglove Sample</b></a> ·
|
| 36 |
+
<a href="#use-this-dataset"><b>Download Guide</b></a> ·
|
| 37 |
+
<a href="#sensor-coverage"><b>Sensor Coverage</b></a> ·
|
| 38 |
+
<a href="#citation"><b>Citation</b></a>
|
| 39 |
+
</p>
|
| 40 |
+
|
| 41 |
+
Raw ROSBag files are the primary data source. Lightweight Parquet and YAML indexes provide session-level and topic-level summaries so users can inspect the dataset before downloading large bags. Code, import scripts, validation scripts, tests, and extended documentation are maintained in the GitHub repository: https://github.com/Ly041021/odom_dataset
|
| 42 |
|
| 43 |
+
<p align="center">
|
| 44 |
+
<img src="docs/assets/readme/dataset_workflow_overview.png" alt="Dataset workflow overview" width="92%">
|
| 45 |
+
</p>
|
| 46 |
+
|
| 47 |
+
## Highlights
|
| 48 |
+
|
| 49 |
+
| Capability | Included assets |
|
| 50 |
+
| --- | --- |
|
| 51 |
+
| Multi-modal robotic sensing | ToF, flight-controller IMU, LiDAR IMU, MID360 LiDAR, RealSense RGB/depth/infrared camera, odometry, and TF streams |
|
| 52 |
+
| Raw-data preservation | Original ROS1 `bag.bag` files are retained as the source of truth |
|
| 53 |
+
| Lightweight discovery | Parquet/YAML indexes summarize sessions, topics, duration, coverage, and quality before raw-data download |
|
| 54 |
+
| Reproducible visualization | A Foxglove sample bag and a conversion script are provided for compact inspection workflows |
|
| 55 |
+
| Sensor documentation | Hardware identities, ToF operating mode, calibration status, and quality reports are available in structured files |
|
| 56 |
|
| 57 |
## Quick Facts
|
| 58 |
|
| 59 |
| Item | Value |
|
| 60 |
| --- | --- |
|
| 61 |
| Sessions | 52 |
|
| 62 |
+
| Total duration | 12,125.257 sec (202.09 min) |
|
| 63 |
| Raw ROSBag size | 301.20 GiB |
|
| 64 |
| Session index rows | 52 |
|
| 65 |
| Topic index rows | 663 |
|
| 66 |
| Sessions with all indexed sensor groups | 26/52 |
|
| 67 |
| Raw format | ROS1 `bag.bag` files |
|
| 68 |
| Timestamp unit | nanoseconds (`ns`) |
|
| 69 |
+
| Ready-to-open Foxglove sample | `examples/foxglove/visual_demo.bag` |
|
| 70 |
|
| 71 |
|
| 72 |
## Use This Dataset
|
| 73 |
|
| 74 |
+
Download the lightweight indexes first. Avoid cloning the full dataset unless you need all raw ROSBag files.
|
| 75 |
|
| 76 |
```python
|
| 77 |
from huggingface_hub import snapshot_download
|
|
|
|
| 80 |
repo_id="ly041021/odom_dataset",
|
| 81 |
repo_type="dataset",
|
| 82 |
allow_patterns=["metadata/**", "quality/**", "calibration/**", "dataset.yaml"],
|
| 83 |
+
local_dir="odom_dataset_index",
|
| 84 |
)
|
| 85 |
```
|
| 86 |
|
|
|
|
| 101 |
snapshot_download(
|
| 102 |
repo_id="ly041021/odom_dataset",
|
| 103 |
repo_type="dataset",
|
| 104 |
+
allow_patterns=["raw/sessions/2026-05-20_030414_odom_run029/**"],
|
| 105 |
+
local_dir="odom_dataset_raw",
|
| 106 |
)
|
| 107 |
```
|
| 108 |
|
| 109 |
+
Download the ready-to-open Foxglove sample:
|
| 110 |
+
|
| 111 |
+
```python
|
| 112 |
+
from huggingface_hub import hf_hub_download
|
| 113 |
+
|
| 114 |
+
hf_hub_download(
|
| 115 |
+
repo_id="ly041021/odom_dataset",
|
| 116 |
+
repo_type="dataset",
|
| 117 |
+
filename="examples/foxglove/visual_demo.bag",
|
| 118 |
+
local_dir="odom_dataset_visualization",
|
| 119 |
+
)
|
| 120 |
+
```
|
| 121 |
+
|
| 122 |
+
## Foxglove Visualization Sample
|
| 123 |
+
|
| 124 |
+
The dataset includes a ready-to-open Foxglove visualization sample at `examples/foxglove/visual_demo.bag`. It exposes synchronized RGB, LiDAR, ToF, IMU, and odometry views without requiring users to process a raw bag first.
|
| 125 |
+
|
| 126 |
+
<p align="center">
|
| 127 |
+
<img src="docs/assets/readme/foxglove_all_modalities.gif" alt="Foxglove multi-modal visualization" width="96%">
|
| 128 |
+
</p>
|
| 129 |
+
|
| 130 |
+
| RGB / Depth | LiDAR |
|
| 131 |
+
| --- | --- |
|
| 132 |
+
| <img src="docs/assets/readme/foxglove_rgb_depth.gif" alt="Foxglove RGB and depth visualization" width="100%"> | <img src="docs/assets/readme/foxglove_lidar.gif" alt="Foxglove LiDAR point cloud visualization" width="100%"> |
|
| 133 |
+
|
| 134 |
+
| IMU Plot | Odometry Path |
|
| 135 |
+
| --- | --- |
|
| 136 |
+
| <img src="docs/assets/readme/foxglove_imu_plot.gif" alt="Foxglove MAVROS IMU plot visualization" width="100%"> | <img src="docs/assets/readme/foxglove_odometry_path.gif" alt="Foxglove odometry path visualization" width="100%"> |
|
| 137 |
+
|
| 138 |
+
| ToF Overview |
|
| 139 |
+
| --- |
|
| 140 |
+
| <img src="docs/assets/readme/foxglove_tof.gif" alt="Foxglove TOFSense-M overview visualization" width="100%"> |
|
| 141 |
+
|
| 142 |
+
Recommended 3D panel setup: `Fixed frame = odom`, `Display frame = odom`.
|
| 143 |
+
|
| 144 |
## Data Layout
|
| 145 |
|
| 146 |
```text
|
|
|
|
| 154 |
quality/reports/ # generated quality reports
|
| 155 |
calibration/robot_v1_template/ # calibration files
|
| 156 |
docs/foxglove_visualization.md # Foxglove visualization guide
|
| 157 |
+
scripts/foxglove_visual.py # Foxglove visualization bag builder
|
| 158 |
+
examples/foxglove/visual_demo.bag # ready-to-open Foxglove sample
|
| 159 |
```
|
| 160 |
|
| 161 |
## Sensor Coverage
|
|
|
|
| 196 |
|
| 197 |
## Quality Notes
|
| 198 |
|
| 199 |
+
- Sessions missing RGB color topics: 24/52.
|
| 200 |
+
- Sessions missing ToF topic: 2/52.
|
| 201 |
- ToF sensor metadata: six-node Nooploop TOFSense-M cascade, UART query mode, 8x8 pixels per node. See `metadata/tof_sensor.yaml` and `metadata/tof_sensor.md`.
|
| 202 |
- ToF validity report: 52,208,469/67,587,392 valid pixels (77.25%).
|
| 203 |
- `quality/reports/topic_completeness_and_tof_validity.md` contains the detailed per-session report.
|
| 204 |
- `calibration/robot_v1_template/` contains MAVROS IMU, MID360 LiDAR, D430 infrared stereo camera calibration, and the explicit ToF extrinsic status. Use the recorded `/camera/*/camera_info` topics for RealSense color/depth intrinsics. Fixed ToF extrinsic is not available in this dataset version.
|
| 205 |
|
| 206 |
+
## Build Custom Visualization Bags
|
| 207 |
|
| 208 |
+
`scripts/foxglove_visual.py` creates Foxglove-ready visualization bags with compressed TOFSense-M overview images, optional RGB topics, standard `sensor_msgs/PointCloud2` output at `/foxglove/livox/points`, accumulated `nav_msgs/Path` output at `/foxglove/odom/path`, MAVROS IMU topics, and odometry TF. In Foxglove, use `Fixed frame = odom` and `Display frame = odom` for the 3D panel. See `docs/foxglove_visualization.md` for command-line examples and panel setup.
|
| 209 |
|
| 210 |
## Limitations
|
| 211 |
|
| 212 |
+
- No fixed train/validation/test split or benchmark protocol is defined in this release.
|
| 213 |
- Images, depth frames, infrared frames, lidar point clouds, and odometry streams are not exported as separate training files.
|
| 214 |
- Topic scanning and raw bag decoding require a ROS1 environment with the `rosbag` Python package.
|
| 215 |
- Raw bags are large. Start from the Parquet indexes, then download only the sessions you need.
|
|
|
|
| 226 |
|
| 227 |
## License
|
| 228 |
|
| 229 |
+
Dataset files are licensed under CC BY-NC 4.0. Commercial use is not permitted under this dataset license. See `DATA_LICENSE.md` for the repository-specific data license note. Source code and documentation tooling in the GitHub repository are licensed separately under MIT.
|
| 230 |
|
| 231 |
---
|
| 232 |
|
dataset.yaml
CHANGED
|
@@ -3,6 +3,10 @@ schema_version: 0.1.0
|
|
| 3 |
canonical_raw_format: rosbag1
|
| 4 |
timestamp_unit: ns
|
| 5 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
raw_layout:
|
| 7 |
sessions_dir: raw/sessions
|
| 8 |
session_bag_name: bag.bag
|
|
|
|
| 3 |
canonical_raw_format: rosbag1
|
| 4 |
timestamp_unit: ns
|
| 5 |
|
| 6 |
+
licenses:
|
| 7 |
+
code: MIT
|
| 8 |
+
data: CC-BY-NC-4.0
|
| 9 |
+
|
| 10 |
raw_layout:
|
| 11 |
sessions_dir: raw/sessions
|
| 12 |
session_bag_name: bag.bag
|
docs/assets/readme/dataset_workflow_overview.png
ADDED
|
Git LFS Details
|
docs/assets/readme/foxglove_all_modalities.gif
ADDED
|
Git LFS Details
|
docs/assets/readme/foxglove_imu_plot.gif
ADDED
|
Git LFS Details
|
docs/assets/readme/foxglove_lidar.gif
ADDED
|
Git LFS Details
|
docs/assets/readme/foxglove_odometry_path.gif
ADDED
|
Git LFS Details
|
docs/assets/readme/foxglove_rgb_depth.gif
ADDED
|
Git LFS Details
|
docs/assets/readme/foxglove_tof.gif
ADDED
|
Git LFS Details
|
docs/assets/readme/odometry_dataset_hero.png
ADDED
|
Git LFS Details
|