Flooded Road Environments Dataset (FRED)
This autonomous vehicle dataset has been developed to enable research into the detection of flooded roads during on-road deployment. The dataset was collected using a Renault Zoe with custom modifications to enable autonomy, including front and rear Blackfly cameras, an Ouster OS1 LiDAR, and a GNSS-corrected IMU. Data has been collected using the vehicle's sensor stack from 5 separate locations around Brisbane, Australia, both during and after flooding events. Semantic labels are provided for images to enable the development of detection methods, and corresponding position information from the GNSS-corrected IMU has been provided across sequences to additionally enable localization research for these scenarios.
Preprint Paper: https://arxiv.org/abs/2605.22018
Github python-based development kit: https://github.com/AVR3-Training-Centre/python-FRED
Huggingface space for dataset and SDK testing: https://huggingface.co/spaces/CMalone-Jupiter/python-FRED
Our Research Group: https://avr3.org.au/
Cite This Work
If you use this dataset in your work, you can cite our preprint article using:
@article{malone2026fred,
title={FRED: A Multi-Modal Autonomous Driving Dataset for Flooded Road Environments},
author={Connor Malone and Sebastien Demmel and Sebastien Glaser},
year={2026},
journal={Arxiv},
url={https://arxiv.org/abs/2605.22018},
}
Dataset Structure
We adopt the following structure for FRED to include a KITTI-style format for the dataset and the native recording format using RTmaps.
βββ flooded # Location sequences captured during flooding events
β βββ KITTI-style # Sequences in a KITTI-style format
β | βββ Cambogan_20250811_113017 # Sequence by location
β | | βββ back-imgs
β | | | βββ <timestamp>.png # Images in 'png' format
β | | βββ back-labels
β | | | βββ <timestamp>.png # Semantic labels in 'png' format
β | | βββ front-imgs
β | | | βββ <timestamp>.png # Images in 'png' format
β | | βββ front-labels
β | | | βββ <timestamp>.png # Semantic labels in 'png' format
β | | βββ imu
β | | | βββ <timestamp>.txt # IMU data formatted as a 'txt' file
β | | βββ ouster
β | | | βββ <timestamp>.bin # Point clouds formatted as a binary file
β | | βββ utm
β | | βββ <timestamp>.txt # UTM locations formatted as a 'txt' file
β | βββ ...
β | βββ ...
β βββ native-RTmaps # Sequences in native recording format
β βββ Cambogan_20250811_113017 # Sequence by location
β | βββ Camera_Rec # Recording files for image playback
β | βββ IMU_Info_Rec # Recording files for IMU playback
β | βββ Ouster_Rec # Recording files for LiDAR playback
β βββ ...
β βββ ...
β
βββ dry # Location sequences captured while 'dry'
βββ KITTI-style
βββ native-RTmaps
Data Formats
Image Format
Images are stored in PNG format.
Point Cloud Format
Point clouds are stored in binary format (.bin), with each point containing x, y, z positions, as well as reflectivity values. Reflectivity values are surface normalized signal intensity measurements that range from 0 to 255. 3D coordinates are captured in the right-hand coordinate frame with the positive x-axis in the vehicle's direction of travel.
UTM Format
UTM data is stored in text file format (.txt), with UTM x and y values being stored as space separated values in the file.
IMU Format
Additional IMU information is also stored in text file format (.txt). A space delimiter is again used to separate values. The additional IMU data is stored in the following order:
[ Latitude, Longitude, Altitude,
Roll, Pitch, Yaw,
North Velocity, East Velocity,
x Velocity, y Velocity, z Velocity,
x Angular Velocity, y Angular Velocity, z Angular Velocity,
x Angular Velocity, y Angular Velocity, z Angular Velocity,
x Angular Accel, y Angular Accel, z Angular Accel,
x Angular Accel, y Angular Accel, z Angular Accel,
Position Accuracy, Velocity Accuracy,
Navstate Value, Numstat Value,
Position Mode, Velocity Mode, Orientation Mode ]
- Downloads last month
- 15