Release 0.1.0: A9 r02_s01 HDF5 caches (a9_r02_s01_*)
Browse files- README.md +102 -0
- a9_r02_s01_test.h5 +3 -0
- a9_r02_s01_train.h5 +3 -0
- a9_r02_s01_val.h5 +3 -0
README.md
ADDED
|
@@ -0,0 +1,102 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-nd-4.0
|
| 3 |
+
pretty_name: xcalib A9 r02_s01 HDF5 caches
|
| 4 |
+
tags:
|
| 5 |
+
- camera-lidar
|
| 6 |
+
- cross-modal-matching
|
| 7 |
+
- extrinsic-calibration
|
| 8 |
+
- targetless-calibration
|
| 9 |
+
- hdf5
|
| 10 |
+
- a9
|
| 11 |
+
- tum-traffic
|
| 12 |
+
---
|
| 13 |
+
|
| 14 |
+
# xcalib A9 r02_s01 HDF5 caches
|
| 15 |
+
|
| 16 |
+
Precomputed matching caches for **camera-LiDAR cross-modal matching** and **targetless extrinsic calibration**, built from the TUM Traffic / A9 `s110` intersection recording. Each HDF5 file stores per-frame camera images, LiDAR point clouds, object detections, and the camera-LiDAR match matrices used to train and evaluate the `xcalib` matcher front-end.
|
| 17 |
+
|
| 18 |
+
This dataset repo is public and accompanies the accepted xcalib paper.
|
| 19 |
+
|
| 20 |
+
## Dataset details
|
| 21 |
+
|
| 22 |
+
- **Task:** associate 2D camera detections with 3D LiDAR detections without calibration targets, then recover the camera-LiDAR extrinsic `[R|t]` (`P = K [R|t]`) from confident matches.
|
| 23 |
+
- **Source:** derived from the **TUM Traffic / A9** dataset (`s110` intersection).
|
| 24 |
+
- **Sensors (per frame):** two Basler cameras (`s110_camera_basler_south1_8mm`, `s110_camera_basler_south2_8mm`) and one LiDAR. Images are JPEG-encoded (decoded BGR to RGB); point clouds are XYZ in **meters**, in the same coordinate frame as the 3D boxes. Camera intrinsics are assumed known; `xcalib` solves only the extrinsic `[R|t]`.
|
| 25 |
+
|
| 26 |
+
## Splits
|
| 27 |
+
|
| 28 |
+
- `a9_r02_s01_train.h5` - training
|
| 29 |
+
- `a9_r02_s01_val.h5` - validation
|
| 30 |
+
- `a9_r02_s01_test.h5` - held-out test (29 frames; never seen during training)
|
| 31 |
+
|
| 32 |
+
## HDF5 schema
|
| 33 |
+
|
| 34 |
+
| path | dtype | description |
|
| 35 |
+
|---|---|---|
|
| 36 |
+
| `images/<camera>/data` | uint8 (JPEG bytes) `[N]` | encoded RGB frames, one per frame |
|
| 37 |
+
| `point_clouds/<lidar>/<frame>/xyz` | float32 `[P, 3]` | LiDAR points, meters |
|
| 38 |
+
| `labels/<sensor>/<frame>/num_camera_detections` | int | number of 2D boxes `K` |
|
| 39 |
+
| `labels/<sensor>/<frame>/num_lidar_detections` | int | number of 3D boxes `M` |
|
| 40 |
+
| `labels/<sensor>/<frame>/camera_bbox_2d` | float32 `[K, 4]` | 2D boxes `(x1, y1, x2, y2)` in pixels |
|
| 41 |
+
| `labels/<sensor>/<frame>/lidar_bbox_3d` | float32 `[M, 6]` | 3D LiDAR boxes (6 values) |
|
| 42 |
+
| `labels/<sensor>/<frame>/match_matrix` | uint8 `[K, M]` | camera-LiDAR match labels |
|
| 43 |
+
| `labels/<sensor>/<frame>/camera_names` | bytes `[K]` | per-detection source camera (optional) |
|
| 44 |
+
| `calibration` | n/a | optional; absent in matching-only caches |
|
| 45 |
+
|
| 46 |
+
Bounding-box arrays are allocated with capacity and sliced by the `num_*` counts (`[0:K)` / `[0:M)`).
|
| 47 |
+
|
| 48 |
+
## Usage
|
| 49 |
+
|
| 50 |
+
```python
|
| 51 |
+
from xcalib import load_dataset
|
| 52 |
+
|
| 53 |
+
loader = load_dataset("a9_dataset_r02_s01", split="test")
|
| 54 |
+
frame = loader[0] # .image / .point_cloud / .bboxes_2d / .bboxes_3d / .match_matrix
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
Install with `pip install xcalib`; the loader fetches the cache from the Hub on first use and caches it locally.
|
| 58 |
+
|
| 59 |
+
## Files
|
| 60 |
+
|
| 61 |
+
| split | file | SHA-256 |
|
| 62 |
+
|---|---|---|
|
| 63 |
+
| `train` | `a9_r02_s01_train.h5` | `1b98298911fcd9e64f8e1651d7a8165c23f9e4df74fe957cec4caf734c13ab09` |
|
| 64 |
+
| `val` | `a9_r02_s01_val.h5` | `ba724986d6aef62e5834de97954098d4d3d8c0620bbb2ba82d271301f45ffbfa` |
|
| 65 |
+
| `test` | `a9_r02_s01_test.h5` | `bab6e7527682549bd3c01c3f0630365692f1e8906361d19fa5842bf0393739de` |
|
| 66 |
+
|
| 67 |
+
## License & upstream dataset
|
| 68 |
+
|
| 69 |
+
Cache files are released under **CC BY-NC-ND 4.0**. They derive from the **TUM Traffic / A9** dataset; users must follow the upstream dataset's license terms. The `xcalib` source code is Apache-2.0.
|
| 70 |
+
|
| 71 |
+
## Upstream citation
|
| 72 |
+
|
| 73 |
+
If you use these caches, please also cite the upstream A9 Intersection Dataset:
|
| 74 |
+
|
| 75 |
+
```bibtex
|
| 76 |
+
@inproceedings{zimmer2023a9intersection,
|
| 77 |
+
title = {A9 Intersection Dataset: All You Need for Urban 3D Camera-LiDAR Roadside Perception},
|
| 78 |
+
author = {Zimmer, Walter and Cre{\ss}, Christian and Nguyen, Hieu and Knoll, Alois C.},
|
| 79 |
+
booktitle = {2023 IEEE 26th International Conference on Intelligent Transportation Systems (ITSC)},
|
| 80 |
+
year = {2023},
|
| 81 |
+
note = {arXiv:2306.09266},
|
| 82 |
+
}
|
| 83 |
+
```
|
| 84 |
+
|
| 85 |
+
## Authors
|
| 86 |
+
|
| 87 |
+
Lihao Guo, Jiahao Tang, Tam Bang, Tianya Zhang, Austin Harris, Mina Sartipi, Siyang Cao
|
| 88 |
+
|
| 89 |
+
## Citation
|
| 90 |
+
|
| 91 |
+
```bibtex
|
| 92 |
+
@article{guo2026xcalib,
|
| 93 |
+
author = {Guo, Lihao and Tang, Jiahao and Bang, Tam and Zhang, Tianya and
|
| 94 |
+
Harris, Austin and Sartipi, Mina and Cao, Siyang},
|
| 95 |
+
title = {Position Encoding in Detection-Based LiDAR--Camera Matching:
|
| 96 |
+
A Diagnostic Study at Infrastructure Sites},
|
| 97 |
+
journal = {IEEE Sensors Letters},
|
| 98 |
+
year = {2026},
|
| 99 |
+
note = {Accepted. Paper URL pending. Code:
|
| 100 |
+
https://github.com/radar-lab/xcalib},
|
| 101 |
+
}
|
| 102 |
+
```
|
a9_r02_s01_test.h5
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bab6e7527682549bd3c01c3f0630365692f1e8906361d19fa5842bf0393739de
|
| 3 |
+
size 92470868
|
a9_r02_s01_train.h5
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1b98298911fcd9e64f8e1651d7a8165c23f9e4df74fe957cec4caf734c13ab09
|
| 3 |
+
size 627112663
|
a9_r02_s01_val.h5
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:ba724986d6aef62e5834de97954098d4d3d8c0620bbb2ba82d271301f45ffbfa
|
| 3 |
+
size 178780522
|