The dataset viewer is not available for this split.
Error code: StreamingRowsError
Exception: ArrowInvalid
Message: Mismatching child array lengths
Traceback: Traceback (most recent call last):
File "/src/services/worker/src/worker/utils.py", line 147, in get_rows_or_raise
return get_rows(
dataset=dataset,
...<4 lines>...
column_names=column_names,
)
File "/src/libs/libcommon/src/libcommon/utils.py", line 272, in decorator
return func(*args, **kwargs)
File "/src/services/worker/src/worker/utils.py", line 127, in get_rows
rows_plus_one = list(itertools.islice(safe_iter(ds, dataset=dataset), rows_max_number + 1))
File "/src/services/worker/src/worker/utils.py", line 478, in safe_iter
yield from ds.decode(False) if ds.features else ds
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2818, in __iter__
for key, example in ex_iterable:
^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2355, in __iter__
for key, pa_table in self._iter_arrow():
~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 2380, in _iter_arrow
for key, pa_table in self.ex_iterable._iter_arrow():
~~~~~~~~~~~~~~~~~~~~~~~~~~~~^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 536, in _iter_arrow
for key, pa_table in iterator:
^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/iterable_dataset.py", line 419, in _iter_arrow
for key, pa_table in self.generate_tables_fn(**gen_kwags):
~~~~~~~~~~~~~~~~~~~~~~~^^^^^^^^^^^^^
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/hdf5/hdf5.py", line 87, in _generate_tables
pa_table = _recursive_load_arrays(h5, self.info.features, start, end)
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/hdf5/hdf5.py", line 273, in _recursive_load_arrays
arr = _recursive_load_arrays(dset, features[path], start, end)
File "/usr/local/lib/python3.14/site-packages/datasets/packaged_modules/hdf5/hdf5.py", line 294, in _recursive_load_arrays
sarr = pa.StructArray.from_arrays(values, names=keys)
File "pyarrow/array.pxi", line 4306, in pyarrow.lib.StructArray.from_arrays
File "pyarrow/error.pxi", line 155, in pyarrow.lib.pyarrow_internal_check_status
return check_status(status)
File "pyarrow/error.pxi", line 92, in pyarrow.lib.check_status
raise convert_status(status)
pyarrow.lib.ArrowInvalid: Mismatching child array lengthsNeed help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.
Benchmark: Plentiful Carla Camera Rigs
Camera-based perception systems for autonomous driving are typically developed and evaluated using fixed sensor rigs, while real-world vehicle fleets exhibit substantial variation in camera placement, orientation, field of view, and camera count. This mismatch introduces a cross-rig domain gap in which only the geometric observation process changes.
To study this effect under controlled conditions, we introduce Plentiful Carla Camera Rigs (PCCR), a 3D object detection benchmark that renders identical driving scenes under 14 systematically designed camera rigs. Using this benchmark, we analyze cross-rig transfer behavior of representative multi-view perception architectures and observe substantial performance shifts induced by geometric rig variation.
For more information, please visit our project page or GitHub repository. The latter contains benchmark utilities and the code for re-generating the data.
Structure
pccr/data/
The main data folder contains multi-camera images, LiDAR point clouds, annotations, and CAN bus data for all 14 camera rigs. It is organized as follows:
pccr/data/
βββ R1.zip/ # Baseline rig with 6 cameras + LiDAR
βββ R1-c10.zip/ # 10-camera variant
βββ R1-c6.zip/ # 6-camera variant
βββ R1-f.zip/ # Front-facing variant
βββ R1-r.zip/ # Rear-facing variant
βββ R1-t.zip/ # Top-mounted variant
βββ R2.zip/ to R9.zip/ # Additional rig configurations
β
βββ [Each rig contains]:
βββ *_infos_mini.pkl # Annotation metadata (mmdet3d format)
βββ *_infos_test.pkl
βββ *_infos_train.pkl
βββ *_infos_val.pkl
β # pkl files encode sample/annotation information for training with
β # mmdet3d and related frameworks
β
βββ samples/ # Sensor data organized by type
β βββ CAM_BUMPER_FRONT/
β βββ CAM_BUMPER_BACK/
β βββ CAM_FENDER_FRONT_LEFT/
β βββ CAM_FENDER_FRONT_RIGHT/
β βββ CAM_FENDER_BACK_LEFT/
β βββ CAM_FENDER_BACK_RIGHT/
β βββ CAM_SIDE_LEFT/
β βββ CAM_SIDE_RIGHT/
β βββ LIDAR_TOP/ # Point cloud frames
β
βββ v1.0-mini/ # nuScenes-format metadata
β βββ scene.json
β βββ sample.json
β βββ sample_data.json
β βββ sample_annotation.json
β βββ ego_pose.json
β βββ calibrated_sensor.json
β βββ sensor.json
β βββ instance.json
β βββ category.json
β βββ attribute.json
β βββ visibility.json
β βββ log.json
β βββ map.json
β βββ additional_types.json
β
βββ v1.0-test/ # Same structure for different splits
βββ v1.0-trainval/
β
βββ can_bus/ # CAN bus simulator data
βββ logs/ # Generation logs and metadata
Data Format Notes:
- Pkl files (
*_infos_*.pkl): Serialized Python dictionaries containing annotations and metadata compatible with MMDetection3D training pipelines and related 3D detection frameworks - Images: 1280Γ720 RGB images from several camera perspectives
- LiDAR: Point cloud data in standard nuScenes format
- Metadata: Full nuScenes-compatible JSON schema for reproducible benchmarking
pccr/trajectories_pruned/
High-level ego and object trajectories extracted from simulations, organized by data split:
pccr/trajectories_pruned/
βββ scenes.json # Master scene configuration and metadata
β
βββ mini/ # Small validation split
β βββ mini_01.h5
β βββ mini_02.h5
β βββ mini_03.h5
β βββ mini_04.h5
β βββ mini_05.h5
β
βββ test/ # Test split
β βββ test_01.h5
β βββ ...
β
βββ trainval/ # Training + validation split
βββ trainval_01.h5
βββ ...
Trajectory Format:
- H5 files: HDF5 format containing serialized trajectory data (ego poses, object bounding boxes, velocities) for trajectory-based analysis and reproduction
Citation
Please use the following BibTeX entry to cite our work:
@inproceedings{bader2026crossrig,
title = {Understanding Cross-Rig Generalization in Automotive Perception: a Multi-Rig Benchmark and Rig Variation Metrics},
author = {Bader, Tim Alexander and Eberhardt, Tim Dieter and Dillitzer, Maximilian and Stork, Wilhelm},
booktitle = {European Conference on Computer Vision (ECCV)},
year = {2026},
note = {Project page: https://badertim.github.io/plentiful-carla-camera-rigs/}
}
- Downloads last month
- 182
