harpreetsahota commited on
Commit
50e4659
·
verified ·
1 Parent(s): be9c1f5

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +211 -132
README.md CHANGED
@@ -57,7 +57,7 @@ dataset_summary: '
57
 
58
  # Note: other available arguments include ''max_samples'', etc
59
 
60
- dataset = load_from_hub("harpreetsahota/kitscenes-multimodal")
61
 
62
 
63
  # Launch the App
@@ -71,10 +71,7 @@ dataset_summary: '
71
 
72
  # Dataset Card for kitscenes-multimodal
73
 
74
- <!-- Provide a quick summary of the dataset. -->
75
-
76
-
77
-
78
 
79
 
80
  This is a [FiftyOne](https://github.com/voxel51/fiftyone) dataset with 680 samples.
@@ -95,141 +92,223 @@ from fiftyone.utils.huggingface import load_from_hub
95
 
96
  # Load the dataset
97
  # Note: other available arguments include 'max_samples', etc
98
- dataset = load_from_hub("harpreetsahota/kitscenes-multimodal")
99
 
100
  # Launch the App
101
  session = fo.launch_app(dataset)
102
  ```
103
 
104
 
105
- ## Dataset Details
106
-
107
- ### Dataset Description
108
-
109
- <!-- Provide a longer summary of what this dataset is. -->
110
-
111
-
112
-
113
- - **Curated by:** [More Information Needed]
114
- - **Funded by [optional]:** [More Information Needed]
115
- - **Shared by [optional]:** [More Information Needed]
116
- - **Language(s) (NLP):** en
117
- - **License:** cc-by-nc-4.0
118
-
119
- ### Dataset Sources [optional]
120
-
121
- <!-- Provide the basic links for the dataset. -->
122
-
123
- - **Repository:** [More Information Needed]
124
- - **Paper [optional]:** [More Information Needed]
125
- - **Demo [optional]:** [More Information Needed]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
126
 
127
  ## Uses
128
 
129
- <!-- Address questions around how the dataset is intended to be used. -->
130
-
131
- ### Direct Use
132
-
133
- <!-- This section describes suitable use cases for the dataset. -->
134
-
135
- [More Information Needed]
136
-
137
- ### Out-of-Scope Use
138
-
139
- <!-- This section addresses misuse, malicious use, and uses that the dataset will not work well for. -->
140
-
141
- [More Information Needed]
142
-
143
- ## Dataset Structure
144
-
145
- <!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->
146
-
147
- [More Information Needed]
148
-
149
- ## Dataset Creation
150
-
151
- ### Curation Rationale
152
-
153
- <!-- Motivation for the creation of this dataset. -->
154
-
155
- [More Information Needed]
156
-
157
- ### Source Data
158
-
159
- <!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
160
-
161
- #### Data Collection and Processing
162
-
163
- <!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->
164
-
165
- [More Information Needed]
166
-
167
- #### Who are the source data producers?
168
-
169
- <!-- This section describes the people or systems who originally created the data. It should also include self-reported demographic or identity information for the source data creators if this information is available. -->
170
-
171
- [More Information Needed]
172
-
173
- ### Annotations [optional]
174
-
175
- <!-- If the dataset contains annotations which are not part of the initial data collection, use this section to describe them. -->
176
-
177
- #### Annotation process
178
-
179
- <!-- This section describes the annotation process such as annotation tools used in the process, the amount of data annotated, annotation guidelines provided to the annotators, interannotator statistics, annotation validation, etc. -->
180
-
181
- [More Information Needed]
182
-
183
- #### Who are the annotators?
184
-
185
- <!-- This section describes the people or systems who created the annotations. -->
186
-
187
- [More Information Needed]
188
-
189
- #### Personal and Sensitive Information
190
-
191
- <!-- State whether the dataset contains data that might be considered personal, sensitive, or private (e.g., data that reveals addresses, uniquely identifiable names or aliases, racial or ethnic origins, sexual orientations, religious beliefs, political opinions, financial or health data, etc.). If efforts were made to anonymize the data, describe the anonymization process. -->
192
-
193
- [More Information Needed]
194
-
195
- ## Bias, Risks, and Limitations
196
-
197
- <!-- This section is meant to convey both technical and sociotechnical limitations. -->
198
-
199
- [More Information Needed]
200
-
201
- ### Recommendations
202
-
203
- <!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->
204
-
205
- Users should be made aware of the risks, biases and limitations of the dataset. More information needed for further recommendations.
206
-
207
- ## Citation [optional]
208
-
209
- <!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
210
-
211
- **BibTeX:**
212
-
213
- [More Information Needed]
214
-
215
- **APA:**
216
-
217
- [More Information Needed]
218
-
219
- ## Glossary [optional]
220
-
221
- <!-- If relevant, include terms and calculations in this section that can help readers understand the dataset or dataset card. -->
222
-
223
- [More Information Needed]
224
-
225
- ## More Information [optional]
226
-
227
- [More Information Needed]
228
-
229
- ## Dataset Card Authors [optional]
230
-
231
- [More Information Needed]
232
 
233
- ## Dataset Card Contact
234
 
235
- [More Information Needed]
 
 
57
 
58
  # Note: other available arguments include ''max_samples'', etc
59
 
60
+ dataset = load_from_hub("Voxel51/kitscenes-multimodal")
61
 
62
 
63
  # Launch the App
 
71
 
72
  # Dataset Card for kitscenes-multimodal
73
 
74
+ ![image/png](kitscenes.gif)
 
 
 
75
 
76
 
77
  This is a [FiftyOne](https://github.com/voxel51/fiftyone) dataset with 680 samples.
 
92
 
93
  # Load the dataset
94
  # Note: other available arguments include 'max_samples', etc
95
+ dataset = load_from_hub("Voxel51/kitscenes-multimodal")
96
 
97
  # Launch the App
98
  session = fo.launch_app(dataset)
99
  ```
100
 
101
 
102
+ # KITScenes Multimodal — FiftyOne Dataset
103
+
104
+ A FiftyOne build of **KITScenes Multimodal** (KIT-MRT), a high-fidelity European
105
+ urban autonomous-driving dataset. Each frame is a synchronized capture from a
106
+ full robotaxi sensor suite nine global-shutter cameras giving 360° coverage,
107
+ seven long-range lidars, and three 4D imaging radars — paired with production-grade
108
+ Lanelet2 HD-map labels, projected lidar depth, the future ego path, and image
109
+ instance predictions.
110
+
111
+ This build packages those captures as a **grouped FiftyOne dataset** so every
112
+ sensor for a given moment lives in one group, and the 3D lidar/radar point cloud
113
+ sits alongside the camera images. The card below describes exactly what is in the
114
+ dataset and how it is organized.
115
+
116
+ ## At a glance
117
+
118
+ | | |
119
+ |---|---|
120
+ | **Dataset name** | `kitscenes-multimodal` |
121
+ | **Media type** | `group` (grouped dataset) |
122
+ | **Samples** | 6,800 |
123
+ | **Frames (groups)** | 680 |
124
+ | **Scenes** | 4 (validation split) |
125
+ | **Frames per scene** | 100 / 100 / 200 / 280 |
126
+ | **Group slices** | 9 cameras + 1 fused 3D lidar slice |
127
+ | **Capture rate** | 10 Hz |
128
+ | **Region** | Frankfurt, Germany (European urban) |
129
+ | **License** | CC-BY-NC-4.0 |
130
+
131
+ A *group* corresponds to one timestamped frame and holds 10 samples: the 9 camera
132
+ images plus the fused 3D point cloud. With 680 groups that gives 6,120 image
133
+ samples + 680 3D samples = 6,800 total.
134
+
135
+ ## Dataset sources
136
+
137
+ - **Curated by:** the KITScenes team at the Institute of Measurement and Control
138
+ Systems (MRT), Karlsruhe Institute of Technology (KIT), and the FZI Research
139
+ Center for Information Technology — Richard Schwarzkopf and Fabian Immel (joint
140
+ first authors), Jan-Hendrik Pauls (project lead), Christoph Stiller, and
141
+ collaborators. This FiftyOne build was prepared by Harpreet Sahota (Voxel51).
142
+ - **Language:** English
143
+ - **License:** CC-BY-NC-4.0
144
+
145
+ | Resource | Link |
146
+ |---|---|
147
+ | Original dataset (Hugging Face) | [KIT-MRT/KITScenes-Multimodal](https://huggingface.co/datasets/KIT-MRT/KITScenes-Multimodal) |
148
+ | Single-scene preview (Hugging Face) | [KIT-MRT/KITScenes-Multimodal-Sample](https://huggingface.co/datasets/KIT-MRT/KITScenes-Multimodal-Sample) |
149
+ | Python API / devkit (GitHub) | [KIT-MRT/kitscenes](https://github.com/KIT-MRT/kitscenes) |
150
+ | Paper | *The Road Ahead in Autonomous Driving: The KITScenes Multimodal Dataset* — [arXiv:2606.02956](https://arxiv.org/abs/2606.02956) |
151
+ | Project page | [kitscenes.com/multimodal](https://kitscenes.com/multimodal/) |
152
+ | This FiftyOne build | `harpreetsahota/kitscenes-multimodal` (Hugging Face) |
153
+
154
+ The `kitscenes` Python package on GitHub (the devkit) is the official loader for the
155
+ sensor, calibration, and map data; this FiftyOne build uses it to decode and project
156
+ the geometry and labels.
157
+
158
+ ## Dataset structure
159
+
160
+ ### Group slices
161
+
162
+ The dataset is grouped on the `group` field. Each frame contains the following
163
+ slices (the slice name doubles as the sensor name in the `sensor` field). The
164
+ default slice shown in the App is `camera_ring_front`.
165
+
166
+ | Slice | Media | Role |
167
+ |---|---|---|
168
+ | `camera_ring_front` | image | Forward ring camera (default view) |
169
+ | `camera_ring_front_left` | image | Ring camera, front-left |
170
+ | `camera_ring_front_right` | image | Ring camera, front-right |
171
+ | `camera_ring_rear` | image | Rear ring camera |
172
+ | `camera_ring_rear_left` | image | Ring camera, rear-left |
173
+ | `camera_ring_rear_right` | image | Ring camera, rear-right |
174
+ | `camera_base_front_center` | image | High-resolution long-range front camera |
175
+ | `camera_base_front_left_rect` | image | Rectified front stereo, left |
176
+ | `camera_base_front_right_rect` | image | Rectified front stereo, right |
177
+ | `lidar` | 3d | Fused point cloud: 7 lidars + 3 radars, in the ego frame |
178
+
179
+ The six `camera_ring_*` slices form the 360° surround view; the three
180
+ `camera_base_*` slices are the long-range and stereo cameras.
181
+
182
+ ### Sample-level fields
183
+
184
+ These fields are present on every sample (cameras and the 3D slice), giving each
185
+ sample its scene context, timing, and ego pose.
186
+
187
+ | Field | Type | Description |
188
+ |---|---|---|
189
+ | `scene_id` | string | UUID of the source scene |
190
+ | `frame` | int | Frame index within the scene (0-based) |
191
+ | `timestamp` | float | Reference timestamp (seconds) |
192
+ | `sensor` | string | Sensor / slice name |
193
+ | `ego_translation` | list[float] | Ego position `[x, y, z]` in the world frame |
194
+ | `ego_quaternion` | list[float] | Ego orientation `[qx, qy, qz, qw]` |
195
+ | `ego_yaw_deg` | float | Ego heading (degrees) |
196
+ | `location` | `GeoLocation` | GNSS longitude/latitude |
197
+ | `altitude` | float | GNSS altitude (meters) |
198
+ | `gnss_fix_status` | int | GNSS fix-status code |
199
+ | `ego_speed` | float | Ego speed from GNSS twist (m/s) |
200
+
201
+ The per-frame ego pose plus GNSS together give the full **car trajectory** — the
202
+ sequence of ego positions and headings over each scene.
203
+
204
+ Camera slices additionally carry:
205
+
206
+ | Field | Type | Description |
207
+ |---|---|---|
208
+ | `intrinsics` | dict | Pinhole intrinsics (focal length, principal point) |
209
+ | `resolution` | dict | Image `width` / `height` |
210
+
211
+ ### Label fields
212
+
213
+ Labels are attached per camera slice; not every label exists on every camera. The
214
+ table shows where each one is populated.
215
+
216
+ | Field | FiftyOne type | Where | What it is |
217
+ |---|---|---|---|
218
+ | `lidar_depth` | `Heatmap` | all 9 cameras | Fused lidar depth projected into the image, encoded as an 8-bit depth heatmap (near→far) |
219
+ | `hd_map` | `Polylines` | 6 ring cameras | Lanelet2 HD-map elements reprojected into the image (lane markings, borders, road markings, poles, traffic signs, traffic lights) |
220
+ | `ego_trajectory` | `Keypoints` | `camera_ring_front` | The vehicle's future path (ego waypoints) projected onto the road ahead, label `ego_path` |
221
+ | `seamseg` | `Detections` | `camera_ring_front`, `camera_ring_rear` | Instance predictions (boxes + masks) in the Mapillary-Vistas taxonomy |
222
+
223
+ `hd_map` polylines carry a top-level `label` (the coarse category) and a `subtype`
224
+ attribute holding the fine-grained Lanelet2 class (e.g. lane-marking style, or the
225
+ specific German traffic-sign code such as `de206`).
226
+
227
+ ### The 3D lidar slice
228
+
229
+ The `lidar` slice is a single `.fo3d` scene per frame that fuses **seven lidars and
230
+ three radars** into one ego-frame point cloud (lidar sweeps are motion-deskewed;
231
+ radar detections are ego-motion compensated). Points are shaded by intensity in the
232
+ App. The point clouds carry these per-point scalar fields:
233
+
234
+ - **Lidar points:** `intensity` (reflectivity) and `isground` (per-point ground
235
+ flag from ground segmentation).
236
+ - **Radar points:** `intensity` (RCS) and `range_rate` (Doppler velocity).
237
+
238
+ ### Saved views
239
+
240
+ Three dynamic grouped views ship with the dataset for browsing:
241
+
242
+ | View | What it shows |
243
+ |---|---|
244
+ | `ring_front_by_scene_frame` | The forward ring camera, grouped by `(scene_id, frame)` — 680 groups |
245
+ | `ring_rear_by_scene_frame` | The rear ring camera, grouped by `(scene_id, frame)` — 680 groups |
246
+ | `lidar_by_scene` | The fused lidar slice grouped by `scene_id` — 4 groups, one per scene |
247
+
248
+ ## Label taxonomies
249
+
250
+ **HD map (`hd_map`) categories:** `lane_marking`, `road_marking`, `road_border`,
251
+ `pole`, `traffic_sign`, `traffic_light`. Each polyline's `subtype` holds the
252
+ detailed Lanelet2 class — lane-marking styles (e.g. `dashed`, `solid`,
253
+ `dashed_solid`) and the fine-grained German traffic-sign codes (`de…`).
254
+
255
+ **Instance predictions (`seamseg`) classes:** Mapillary-Vistas "thing" classes,
256
+ including `Car`, `Truck`, `Bus`, `Bicycle`, `Motorcycle`, `Trailer`,
257
+ `Other Vehicle`, `Person`, `Bicyclist`, `Motorcyclist`, `Other Rider`,
258
+ `Traffic Light`, `Traffic Sign (Front)`, `Traffic Sign (Back)`,
259
+ `Traffic Sign Frame`, `Pole`, `Utility Pole`, `Street Light`, `Bench`,
260
+ `Billboard`, `Banner`, `Bike Rack`, `Trash Can`, `Mailbox`, `Fire Hydrant`,
261
+ `Junction Box`, `Catch Basin`, `Manhole`, `Phone Booth`, `CCTV Camera`, `Bird`,
262
+ `Wheeled Slow`, `Crosswalk - Plain`, `Lane Marking - Crosswalk`.
263
 
264
  ## Uses
265
 
266
+ This FiftyOne build is suited to:
267
+
268
+ - **Multimodal browsing and curation** — inspect all 9 cameras and the fused
269
+ point cloud for any frame, side by side.
270
+ - **HD-map perception** the `hd_map` polylines provide reprojection-accurate
271
+ Lanelet2 map labels aligned to image pixels.
272
+ - **Long-range depth** — `lidar_depth` heatmaps provide dense, long-range depth
273
+ ground truth (the source lidar reaches beyond 400 m).
274
+ - **Trajectory / motion work** — per-frame ego pose plus the projected
275
+ `ego_trajectory` future path.
276
+ - **2D object analysis** the `seamseg` instance detections on the front and rear
277
+ ring cameras.
278
+
279
+ ### Out-of-scope
280
+
281
+ This is an early-release **preview** subset (4 validation scenes). It is meant for
282
+ exploration and pipeline development, not final benchmark reporting. The build also
283
+ does **not** include 3D bounding boxes, tracks, or instance segmentation for
284
+ dynamic agents (the source dataset omits these in the current release). The
285
+ `seamseg` detections are model predictions, not human annotations.
286
+
287
+ ## Source data
288
+
289
+ KITScenes Multimodal was recorded across Karlsruhe, Frankfurt, and Sindelfingen by
290
+ the Institute of Measurement and Control Systems (MRT) at the Karlsruhe Institute of
291
+ Technology (KIT). The scenes here are from the validation split (Frankfurt). Camera
292
+ imagery is anonymized (faces and license plates). Geometry and label projections in
293
+ this build are produced with the official `kitscenes` Python API. See
294
+ [Dataset sources](#dataset-sources) above for the original dataset, devkit, paper,
295
+ and project-page links.
296
+
297
+ ## Citation
298
+
299
+ ```bibtex
300
+ @misc{schwarzkopf2026kitscenes,
301
+ title={The Road Ahead in Autonomous Driving: The KITScenes Multimodal Dataset},
302
+ author={Richard Schwarzkopf and Fabian Immel and Alexander Blumberg and Jonas Merkert and Nils Rack and Kaiwen Wang and Fabian Konstantinidis and Julian Truetsch and Carlos Fernandez and Annika Bätz and Kevin Rösch and Marlon Steiner and Willi Poh and Yinzhe Shen and Royden Wagner and Felix Hauser and Dominik Strutz and Jaime Villa and Gleb Stepanov and Holger Caesar and Ömer Şahin Taş and Frank Bieder and Jan-Hendrik Pauls and Christoph Stiller},
303
+ year={2026},
304
+ eprint={2606.02956},
305
+ archivePrefix={arXiv},
306
+ primaryClass={cs.CV},
307
+ url={https://arxiv.org/abs/2606.02956},
308
+ }
309
+ ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
310
 
311
+ ## License
312
 
313
+ Released under [CC-BY-NC-4.0](https://creativecommons.org/licenses/by-nc/4.0/),
314
+ matching the source dataset's terms. Non-commercial use only; attribution required.