Dataset Viewer
Duplicate
The dataset viewer is not available for this split.
Cannot load the dataset split (in streaming mode) to extract the first rows.
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 lengths

Need 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

Project Page arXiv conference

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.

rigs

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