TUMFTM / truckscenes-devkit

Development Kit for the MAN TruckScenes Dataset
Other
15 stars 2 forks source link
autonomous-driving camera dataset devkit lidar perception radar

MAN TruckScenes devkit

The first multimodal dataset for autonomous trucking [![Python](https://img.shields.io/badge/python-3-blue.svg)](https://www.python.org/downloads/) [![Linux](https://img.shields.io/badge/os-linux-blue.svg)](https://www.linux.org/) [![Windows](https://img.shields.io/badge/os-windows-blue.svg)](https://www.microsoft.com/windows/) [![arXiv](https://img.shields.io/badge/arXiv-Paper-blue.svg)](https://arxiv.org/abs/2407.07462)

Overview

Installation

Our devkit is available and can be installed via pip:

pip install truckscenes-devkit

If you also want to install all the (optional) dependencies for running the visualizations:

pip install "truckscenes-devkit[all]"

The usage requires Python (install here, tested 3.8) and pip (install here) for the installation.

TruckScenes Setup

The MAN TruckScenes dataset will be made available on our Download page and the AWS Open Data Registry.

Until the full dataset becomes available, we provide a mini version of the dataset that can be downloaded here.

For the devkit to work you will need to download all archives.
Please unpack the archives to the /data/truckscenes folder without overwriting folders that occur in multiple archives.
Eventually you should have the following folder structure:

/data/truckscenes
    samples -   Sensor data for keyframes.
    sweeps  -   Sensor data for intermediate frames.
    v1.0-*  -   JSON tables that include all the meta data and annotations. Each split (trainval, test, mini) is provided in a separate folder.

If you want to use another folder, specify the dataroot parameter of the TruckScenes class (see installation).

TruckScenes Usage

Please follow these steps to make yourself familiar with the MAN TruckScenes dataset:

Citation

@article{truckscenes2024,
  title={MAN TruckScenes: A multimodal dataset for autonomous trucking in diverse conditions},
  author={Fent, Felix and Kuttenreich, Fabian and Ruch, Florian and Rizwin, Farija and
    Juergens, Stefan and Lechermann, Lorenz and Nissler, Christian and Perl, Andrea and
    Voll, Ulrich and Yan, Min and Lienkamp, Markus},
  journal={arXiv preprint arXiv:2407.07462},
  year={2024}
}

Copied and adapted from nuscenes-devkit