This repository contains the UAV-Eagle dataset accompanying the journal paper "Brain over Brawn: Using a Stereo Camera to Detect, Track, and Intercept a Faster UAV by Reconstructing the Intruder's Trajectory".
The UAV-Eagle dataset contains 510 annotated images of our custom quadcopter Eagle in an unconstrained environment. This dataset is quite challenging due to the presence of illumination changes, motion effects, changes in viewpoint, and the presence of various objects in the background. The dataset can be used as a testbed for the detection of UAVs, demonstrating the robustness of the detector in real-world conditions and the ability to detect a previously unseen object of interest.
The UAV-Eagle dataset is available here or by running ./download_uav_eagle.sh
in terminal.
If you use this dataset for your research, please cite:
@article{Barisic2022,
doi = {10.55417/fr.2022009},
url = {https://doi.org/10.55417/fr.2022009},
year = {2022},
month = mar,
publisher = {Field Robotics Publication Society},
volume = {2},
number = {1},
pages = {222--240},
author = {Antonella Bari{\v{s}}i{\'{c}} and Frano Petric and Stjepan Bogdan},
title = {Brain over Brawn: Using a Stereo Camera to Detect, Track, and Intercept a Faster {UAV} by Reconstructing the Intruder's Trajectory},
journal = {Field Robotics}
}
The directory is organised as follows:
UAV-Eagle/
├──images/
| ├── frame0000.jpg
| ├── frame0001.jpg
| ├── ...
└──labels/
├── frame0000.txt
├── frame0001.txt
├── ...
For each image there is a .txt
file with the same filename containing annotations in the YOLO format: <object-class> <x> <y> <width> <height>
. Note: <x> <y>
is the center of the bounding box and all values are normalised.
Example of detection on the dataset:
For more information, please contact Antonella Barisic.