benediktkol commited on
Commit
8178cc1
1 Parent(s): 9b54495

Upload folder using huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +77 -3
README.md CHANGED
@@ -1,3 +1,77 @@
1
- ---
2
- license: cc-by-nc-4.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # DDOS: The Drone Depth and Obstacle Segmentation Dataset
2
+
3
+ ## Overview
4
+
5
+ The Drone Depth and Obstacle Segmentation (DDOS) dataset is a collection of aerial images captured by drones, with corresponding depth maps, and annotated with pixel-wise segmentation masks. DDOS is designed to facilitate research and development in the field of computer vision, specifically addressing tasks related to depth estimation and obstacle segmentation from aerial imagery.
6
+
7
+ For a detailed understanding of DDOS, please refer to the associated research paper: [DDOS: The Drone Depth and Obstacle Segmentation Dataset](https://arxiv.org/abs/2312.12494).
8
+
9
+ **Please Note:** The final documentation for this dataset has not been finalized yet. Therefore, the information provided here is subject to change. This README serves as a preliminary guide to give you an understanding of the dataset's structure and contents.
10
+
11
+ ## Data Structure
12
+
13
+ DDOS is organised as follows:
14
+
15
+ - Data Splits:
16
+ - Train: Contains training data for model training.
17
+ - Validation: Contains data for validation during model development.
18
+ - Test: Contains data for the final evaluation of the trained model.
19
+
20
+ - Environments:
21
+ - Neighbourhood: Contains data captured in urban and residential environments.
22
+ - Park: Contains data captured in park and natural environments.
23
+
24
+ - Flights:
25
+ - Each flight is represented by a unique flight ID and is contained within the corresponding environment directory.
26
+
27
+ - Data for Each Flight:
28
+ - Depth: Contains depth maps representing the distance of objects from the camera.
29
+ - Scene Flow: Contains scene flow data representing the 3D motion of objects.
30
+ - Image: Contains RGB images captured by the drone camera.
31
+ - Segmentation: Contains pixel-wise segmentation masks for obstacle segmentation.
32
+ - Surface Normal: Contains surface normal maps representing the orientation of object surfaces.
33
+
34
+
35
+
36
+ ## Additional Information
37
+
38
+ **Class Mapping:** The segmentation masks use the following class labels for obstacle segmentation:
39
+ ```python
40
+ CLASS_MAPPING = {
41
+ 'ultra_thin': 255,
42
+ 'thin_structures': 240,
43
+ 'small_mesh': 220,
44
+ 'large_mesh': 200,
45
+ 'trees': 180,
46
+ 'buildings': 160,
47
+ 'vehicles': 140,
48
+ 'people': 120,
49
+ 'animals': 100,
50
+ 'other': 80
51
+ }
52
+ ```
53
+ **Metadata:** The dataset contains metadata, such as GPS coordinates, altitude, and camera parameters, which provide valuable contextual information about each flight.
54
+
55
+
56
+ ## Dataset Usage
57
+
58
+ - **Data Loading**
59
+ To load and utilize the DDOS dataset for your machine learning projects, you can refer to the official PyTorch data loading tutorial for beginners: [PyTorch Data Loading Tutorial](https://pytorch.org/tutorials/beginner/basics/data_tutorial.html)
60
+ This tutorial will guide you through the process of loading data, creating data loaders, and preparing the dataset for training or evaluation using PyTorch.
61
+
62
+ - **Disclaimer:** While every effort has been made to ensure the accuracy and quality of the DDOS dataset, the dataset owner and contributors cannot be held responsible for any inaccuracies or errors in the data. Users are advised to exercise caution and due diligence when using the dataset for their research or applications.
63
+
64
+ ## License
65
+ DDOS is openly licensed under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/).
66
+
67
+ ## Citation
68
+ If you use DDOS in your research or projects, please cite our paper:
69
+
70
+ ```
71
+ @article{kolbeinsson2023ddos,
72
+ title={{DDOS}: The Drone Depth and Obstacle Segmentation Dataset},
73
+ author={Benedikt Kolbeinsson and Krystian Mikolajczyk},
74
+ journal={arXiv preprint arXiv:2312.12494},
75
+ year={2023}
76
+ }
77
+ ```