lgcyaxi commited on
Commit
1049a90
·
verified ·
1 Parent(s): 4ee15c5

Switch to file-based card + checksum table

Browse files
Files changed (1) hide show
  1. README.md +34 -14
README.md CHANGED
@@ -13,15 +13,27 @@ tags:
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
 
@@ -43,7 +55,8 @@ This dataset repo is public and accompanies the accepted xcalib paper.
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
 
@@ -54,19 +67,14 @@ 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
 
@@ -82,6 +90,7 @@ If you use these caches, please also cite the upstream A9 Intersection Dataset:
82
  }
83
  ```
84
 
 
85
  ## Authors
86
 
87
  Lihao Guo, Jiahao Tang, Tam Bang, Tianya Zhang, Austin Harris, Mina Sartipi, Siyang Cao
@@ -100,3 +109,14 @@ Lihao Guo, Jiahao Tang, Tam Bang, Tianya Zhang, Austin Harris, Mina Sartipi, Siy
100
  https://github.com/radar-lab/xcalib},
101
  }
102
  ```
 
 
 
 
 
 
 
 
 
 
 
 
13
 
14
  # xcalib A9 r02_s01 HDF5 caches
15
 
16
+ Precomputed matching caches for **camera-LiDAR cross-modal matching** and
17
+ **targetless extrinsic calibration**, built from the TUM Traffic / A9 `s110`
18
+ intersection recording. Each HDF5 file stores per-frame camera images, LiDAR
19
+ point clouds, object detections, and the camera-LiDAR match matrices used to
20
+ train and evaluate the `xcalib` matcher front-end.
21
 
22
+ <!-- public-only -->
23
  This dataset repo is public and accompanies the accepted xcalib paper.
24
+ <!-- /public-only -->
25
 
26
  ## Dataset details
27
 
28
+ - **Task:** associate 2D camera detections with 3D LiDAR detections without
29
+ calibration targets, then recover the camera-LiDAR extrinsic `[R|t]`
30
+ (`P = K [R|t]`) from confident matches.
31
  - **Source:** derived from the **TUM Traffic / A9** dataset (`s110` intersection).
32
+ - **Sensors (per frame):** two Basler cameras
33
+ (`s110_camera_basler_south1_8mm`, `s110_camera_basler_south2_8mm`) and one
34
+ LiDAR. Images are JPEG-encoded (decoded BGR to RGB); point clouds are XYZ in
35
+ **meters**, in the same coordinate frame as the 3D boxes. Camera intrinsics
36
+ are assumed known; `xcalib` solves only the extrinsic `[R|t]`.
37
 
38
  ## Splits
39
 
 
55
  | `labels/<sensor>/<frame>/camera_names` | bytes `[K]` | per-detection source camera (optional) |
56
  | `calibration` | n/a | optional; absent in matching-only caches |
57
 
58
+ Bounding-box arrays are allocated with capacity and sliced by the `num_*`
59
+ counts (`[0:K)` / `[0:M)`).
60
 
61
  ## Usage
62
 
 
67
  frame = loader[0] # .image / .point_cloud / .bboxes_2d / .bboxes_3d / .match_matrix
68
  ```
69
 
70
+ Install with `pip install xcalib`; the loader fetches the cache from the Hub on
71
+ first use and caches it locally.
 
 
 
 
 
 
 
72
 
73
  ## License & upstream dataset
74
 
75
+ Cache files are released under **CC BY-NC-ND 4.0**. They derive from the
76
+ **TUM Traffic / A9** dataset; users must follow the upstream dataset's license
77
+ terms. The `xcalib` source code is Apache-2.0.
78
 
79
  ## Upstream citation
80
 
 
90
  }
91
  ```
92
 
93
+ <!-- public-only -->
94
  ## Authors
95
 
96
  Lihao Guo, Jiahao Tang, Tam Bang, Tianya Zhang, Austin Harris, Mina Sartipi, Siyang Cao
 
109
  https://github.com/radar-lab/xcalib},
110
  }
111
  ```
112
+ <!-- /public-only -->
113
+
114
+ <!-- BEGIN generated files table -->
115
+ ## Files
116
+
117
+ | split | file | sha256 |
118
+ |---|---|---|
119
+ | `train` | `a9_r02_s01_train.h5` | `1b98298911fcd9e64f8e1651d7a8165c23f9e4df74fe957cec4caf734c13ab09` |
120
+ | `val` | `a9_r02_s01_val.h5` | `ba724986d6aef62e5834de97954098d4d3d8c0620bbb2ba82d271301f45ffbfa` |
121
+ | `test` | `a9_r02_s01_test.h5` | `bab6e7527682549bd3c01c3f0630365692f1e8906361d19fa5842bf0393739de` |
122
+ <!-- END generated files table -->