Datasets:
File size: 3,658 Bytes
03eab78 60a94b1 03eab78 60a94b1 03eab78 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | ---
license: mit
task_categories:
- feature-extraction
language:
- en
tags:
- perception
- cooperative
- collective
- autonomous_driving
pretty_name: >-
CoopScenes: Multi-Scene Infrastructure and Vehicle Data for Advancing
Collective Perception in Autonomous Driving
viewer: false
---
# π CoopScenes Dataset

## π Overview
**CoopScenes** is a comprehensive multi-scene dataset designed for research in collective perception, sensor registration, and cooperative systems in urban environments. It features synchronized data from an ego vehicle and infrastructure-mounted sensors across real-world scenarios, including public transport stops, construction sites, and expressways.
- **Duration**: \~104 minutes at 10 Hz β \~62,000 frames (\~527β―GB in `.4mse` format)
- **Synchronization**: Sub-frame alignment with \~2.3β―ms mean offset
- **Scenarios**: Collected across multiple cities in the Stuttgart metropolitan area
π More information: [coopscenes.github.io](https://coopscenes.github.io/)
---
## π οΈ Sensor Setup & Annotations
The dataset features time-synchronized and spatially calibrated sensors on both the ego vehicle and roadside infrastructure (towers), including:
- LiDAR (Ouster OS2, Blickfeld Qb2)
- Multi-camera systems
- GNSS and IMU
- Object annotations (automatically generated)
- Privacy-preserving anonymization using [**BlurScene**](https://pypi.org/project/BlurScene/)
---
## β
Key Features
| Feature | Description |
| ------------------------------------- | ----------------------------------------------- |
| 62,000 Frames at 10 Hz | \~104 minutes of data |
| High-precision synchronization | Mean offset \~2.3β―ms |
| Vehicle-to-infrastructure setup | Multi-agent cooperative perception |
| Diverse scenarios | Public transport, construction, highways |
| Automatic annotations & anonymization | Faces and license plates blurred with BlurScene |
---
## π¦ Installation & Usage
Install the CoopScenes Python package:
```bash
pip install coopscenes
```
Then load and explore the dataset using the included developer tools:
```python
from coopscenes import DataRecord
# open a specific .4mse-file
record = DataRecord("/content/example_record_1.4mse")
# use first frame from record
frame = record[0]
frame.vehicle.cameras.STEREO_LEFT.show()
print(frame.tower.lidars.UPPER_PLATFORM.points.shape) # example access
```
Additional tooling, documentation, and format specs can be found in the [developer toolkit](https://pypi.org/project/coopscenes/).
---
## π Google Colab (Quickstart)
Get started with the data using our ready-to-run [**Colab notebook**](https://coopscenes.github.io/#colab). It demonstrates:
- Reading `.4mse` files
- Visualizing sensor data
- Performing simple analysis tasks
---
## π Citation
Please cite the following if you use CoopScenes in your work (IEEE IV '25 publish is following):
```bibtex
@misc{vosshans2025aeifdatacollectiondataset,
author = {Marcel Vosshans and Alexander Baumann and Matthias Drueppel and Omar Ait-Aider and Youcef Mezouar and Thao Dang and Markus Enzweiler},
title = {CoopScenes: Multi-Scene Infrastructure and Vehicle Data for Advancing Collective Perception in Autonomous Driving},
url = {https://arxiv.org/abs/2407.08261},
year = {2025},
}
```
---
## π License
The dataset is released under the **MIT License**. Refer to the LICENSE file for details.
|