CoolFace
Datasetpublic

immanuelpeter/carla-autopilot-images

CARLA Autopilot Images Dataset Note: A newer, extended version of this dataset is available.πŸ€— CARLA Autopilot Multimodal Dataset πŸ€—It includes semantic segmentation, LiDAR, 2D bounding boxes, and additional environment metadata.Use it if your research requires multimodal signals beyond the RGB images and vehicle state/control data provided here. This dataset contains autonomous driving data collected from CARLA simulator using autopilot. Dataset Structure… See the full description on the dataset page: https://huggingface.co/datasets/immanuelpeter/carla-autopilot-images.

sourceHugging Facemitupdated 1y agoView on Hugging Face
0likes92downloads
Dataset Card

CARLA Autopilot Images Dataset

Note: A newer, extended version of this dataset is available. πŸ€— CARLA Autopilot Multimodal Dataset πŸ€— It includes semantic segmentation, LiDAR, 2D bounding boxes, and additional environment metadata. Use it if your research requires multimodal signals beyond the RGB images and vehicle state/control data provided here.

This dataset contains autonomous driving data collected from CARLA simulator using autopilot.

Dataset Structure

  • β€”Train/val/test split is by run, not by frame, to ensure generalization
  • β€”Total train samples: 56.2K
  • β€”Total val samples: 4.8K
  • β€”Total test samples: 7.2K
  • β€”Runs processed: 24

Features

Images

Multiple camera views are available depending on the run configuration:

  • β€”image_front: Front-facing camera view
  • β€”image_rear: Rear-facing camera view
  • β€”image_front_left: Front-left camera view
  • β€”image_front_right: Front-right camera view

Vehicle State

  • β€”Position: location_x, location_y, location_z
  • β€”Orientation: rotation_pitch, rotation_yaw, rotation_roll
  • β€”Velocity: velocity_x, velocity_y, velocity_z, speed_kmh

Vehicle Controls (Targets)

  • β€”throttle: Throttle input [0.0, 1.0]
  • β€”steer: Steering input [-1.0, 1.0]
  • β€”brake: Brake input [0.0, 1.0]

Environment

  • β€”Traffic density information
  • β€”Weather conditions
  • β€”Map information

Usage

python
from datasets import load_dataset

dataset = load_dataset("immanuelpeter/carla-autopilot-images")
train_dataset = dataset["train"]
val_dataset = dataset["validation"]
test_dataset = dataset["test"]

Citation

If you use this dataset, please cite the CARLA simulator:

@inproceedings{Dosovitskiy17,
  title = {CARLA: An Open Urban Driving Simulator},
  author = {Alexey Dosovitskiy and German Ros and Felipe Codevilla and Antonio Lopez and Vladlen Koltun},
  booktitle = {Proceedings of the 1st Annual Conference on Robot Learning},
  pages = {1--16},
  year = {2017}
}