Datasets:
Tasks:
Image Segmentation
Formats:
json
Sub-tasks:
semantic-segmentation
Languages:
English
Size:
1K - 10K
License:
File size: 7,027 Bytes
ed72660 | 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 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 | ---
language:
- en
license: cc-by-sa-4.0
pretty_name: Aeroscapes Semantic Segmentation Dataset
task_categories:
- image-segmentation
task_ids:
- semantic-segmentation
tags:
- semantic-segmentation
- aerial-imagery
- uav
- drone
- remote-sensing
- computer-vision
- ultralytics
- yolo
size_categories:
- 1K<n<10K
configs:
- config_name: default
data_files:
- split: train
path: "train_metadata.jsonl"
- split: validation
path: "val_metadata.jsonl"
---
# Aeroscapes: Aerial Semantic Segmentation Dataset
<p align="center">
<img src="aeroscapes_banner.jpg" alt="AeroScapes Dataset Banner — RGB (left) and colorized ground truth (right) for two sample scenes"/>
</p>






> **Unofficial redistribution of the AeroScapes dataset under the original CC BY-SA 4.0 license.**
## Disclaimer
This repository is **not** an official release of the AeroScapes dataset.
The AeroScapes dataset was created by Ishan Nigam, Chen Huang, and Deva Ramanan, with dataset
collection and manual annotation supported by Autel Robotics. They retain all copyright and
intellectual property rights. This repository does **not** claim ownership of any images,
annotations, or metadata.
This repository exists for two purposes:
1. To reorganize the original dataset into a standardized YOLO/Ultralytics-compatible directory
structure (also consumable by [CABiNet](https://github.com/dronefreak/CABiNet)) that can be used
directly by many modern semantic segmentation training pipelines.
2. To provide a more convenient download source, as the original is distributed as a single
Google Drive archive.
---
# Dataset Description
AeroScapes is a semantic segmentation benchmark captured from low-altitude unmanned aerial
vehicles (UAVs), acquired at altitudes between 5 and 50 meters. The dataset contains 3,269
720p (1280x720) images with pixel-level semantic annotations across 12 classes (11 foreground
classes plus background), covering people, vehicles, and both urban and natural terrain.
This repository preserves the original dataset while packaging it in a standardized directory
layout for improved compatibility with modern deep learning frameworks.
---
# Changes from the Official Release
This repository **does not modify the dataset contents.**
The following changes have been made:
- Reorganized the directory structure into a YOLO/Ultralytics-compatible `images/`+`masks/` layout.
- Added a `data.yaml` configuration file for easier integration with Ultralytics-based projects.
- Preserved the original train and validation splits exactly as released (`ImageSets/trn.txt` and
`val.txt`) — the official AeroScapes release does not define a separate test split.
- Preserved all original filenames.
- Preserved all original images.
- Preserved all original segmentation masks — the official `SegmentationClass/` masks are already
single-channel, class-ID-encoded PNGs, so this is a lossless copy/re-layout, not a re-annotation
or re-encoding.
- No labels were changed.
- No samples were added or removed.
Apart from the directory organization and configuration file, the dataset contents are identical
to the official release.
---
# Dataset Structure
```text
dataset/
├── README.md
├── data.yaml
├── images/
│ ├── train/ # 2,621 images
│ └── val/ # 648 images
└── masks/
├── train/
└── val/
```
where:
* `images/` contains the original RGB UAV images organized by dataset split.
* `masks/` contains the corresponding single-channel semantic segmentation masks (pixel value =
class ID, 0-11) for each split.
* `data.yaml` is a configuration file added in this repository to simplify loading the dataset in
Ultralytics-compatible training pipelines.
* The original train/validation splits have been preserved exactly as released by the AeroScapes
authors. There is no official test split.
Each image in `images/<split>/` has a corresponding segmentation mask with the same filename
(different extension) in `masks/<split>/`.
## Classes
| ID | Class | ID | Class |
| -- | ------------ | -- | ---------- |
| 0 | Background | 6 | Animal |
| 1 | Person | 7 | Obstacle |
| 2 | Bike | 8 | Construction |
| 3 | Car | 9 | Vegetation |
| 4 | Drone | 10 | Road |
| 5 | Boat | 11 | Sky |
All 12 classes are valid and used in both training and evaluation; none are mapped to an ignore
label. Pixel value `255` is reserved for genuinely unrecognized values (none are expected in a
clean copy of this dataset).
---
# Dataset Sources
## Original Paper
**Ensemble Knowledge Transfer for Semantic Segmentation**
Ishan Nigam, Chen Huang, Deva Ramanan
2018 IEEE Winter Conference on Applications of Computer Vision (WACV)
---
## Official Resources
- **Official Repository:** https://github.com/ishann/aeroscapes
- **Dataset Download (Google Drive):** https://drive.google.com/file/d/1WmXcm0IamIA0QPpyxRfWKnicxZByA60v/view?usp=sharing
---
# Attribution
**All credit for the dataset belongs entirely to the original AeroScapes authors and Autel
Robotics** (dataset collection and manual annotation support).
This repository only redistributes the original dataset under the same license while reorganizing
the directory structure for improved usability and accessibility.
If you use this dataset in your research, **please cite the original publication below.**
---
# License
The original AeroScapes dataset is distributed under the **Creative Commons
Attribution-ShareAlike 4.0 International (CC BY-SA 4.0)** license.
Accordingly:
- Attribution to the original authors is required.
- Commercial use is permitted.
- Any derivative work must be distributed under the same license.
This repository is distributed under the same license.
---
# Citation
If you use this dataset, please cite:
```bibtex
@inproceedings{nigam2018ensemble,
author = {Ishan Nigam and Chen Huang and Deva Ramanan},
title = {Ensemble Knowledge Transfer for Semantic Segmentation},
booktitle = {2018 IEEE Winter Conference on Applications of Computer Vision (WACV)},
year = {2018}
}
```
---
# Acknowledgements
We sincerely thank Ishan Nigam, Chen Huang, and Deva Ramanan for creating and publicly releasing
this valuable benchmark, and Autel Robotics for supporting its collection and annotation — this
work has significantly contributed to research in semantic segmentation for UAV imagery.
|