File size: 5,875 Bytes
6c9db25
4c61808
 
 
 
 
6c9db25
4c61808
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
004b46c
4c61808
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
004b46c
4c61808
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
004b46c
4c61808
 
 
 
 
 
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
---
license: mit
task_categories:
- object-detection
size_categories:
- 10K<n<100K
---

# Dataset Card for Drone Detection Dataset

<!-- Provide a quick summary of the dataset. -->

This dataset card describes the processed version of the Drone Detection Dataset, originally curated by Maciej Pawełczyk and Marek Wojtyra, adapted to a COCO-style format for efficient usage in modern deep learning pipelines

## Dataset Details

### Dataset Description

The Drone Detection Dataset is a real-world object detection dataset for UAV detection tasks. It includes RGB images annotated with bounding boxes in the COCO format. This dataset is ideal for training and evaluating object detection models like Faster R-CNN, YOLO, and DETR.


- **Curated by:** Maciej Pawełczyk, Marek Wojtyra
- **Shared by:** [pathikg](https://huggingface.co/pathikg)
- **Language(s) (NLP):** Not applicable
- **License:** MIT License

### Dataset Sources

<!-- Provide the basic links for the dataset. -->

- **Repository:** https://github.com/Maciullo/DroneDetectionDataset
- **Paper:** https://ieeexplore.ieee.org/document/9205392

## Uses

<!-- Address questions around how the dataset is intended to be used. -->

### Direct Use

<!-- This section describes suitable use cases for the dataset. -->

This dataset is suitable for:

- Training object detection models.
- Research on UAV detection and monitoring in various environments and lighting conditions.


### Out-of-Scope Use

<!-- This section addresses misuse, malicious use, and uses that the dataset will not work well for. -->

Out-of-Scope Use
- The dataset is not ideal for real-time UAV tracking.
- It may not generalize well to unseen drone types or environments without further fine-tuning.

## Dataset Structure

<!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->

The dataset is structured as a Hugging Face DatasetDict with train and test splits.
Each split contains features:

```python
DatasetDict({
    train: Dataset({
        features: ['width', 'height', 'objects', 'image', 'image_id'],
        num_rows: 51446
    }),
    test: Dataset({
        features: ['width', 'height', 'objects', 'image', 'image_id'],
        num_rows: 2625
    })
})
```

### Example Datapoint

```python
{
 'width': 640,
 'height': 480,
 'objects': {
    'bbox': [[281.0, 210.0, 25.0, 19.0]],  # COCO format: [x, y, width, height]
    'category': [0],  # Category index for the drone
    'area': [475.0],  # Area of the bounding box
    'id': [0]         # Object ID
 },
 'image': <PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=640x480>,
 'image_id': 2
}
```

### Features
- width and height: Dimensions of the image.
- objects:
  - bbox: Bounding boxes in COCO format [x, y, width, height].
  - category: Class labels (0 for drones).
  - area: Area of each bounding box.
  - id: Unique ID for each object.
- image: The image as a PIL object.
- image_id: Unique identifier for the image.

## Dataset Creation

### Curation Rationale

<!-- Motivation for the creation of this dataset. -->

The dataset was designed to facilitate UAV detection, addressing challenges like detecting small objects across varying scales and environments. It focuses on static object detection rather than tracking.

### Source Data

<!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->

#### Data Collection and Processing

<!-- This section describes the data collection and processing process such as data selection criteria, filtering and normalization methods, tools and libraries used, etc. -->

- Source: Frames extracted from publicly available YouTube videos.
- Processing: Bounding boxes were annotated manually in COCO format for initial samples and later supplemented with automated annotations using trained models.

#### Who are the source data producers?

<!-- This section describes the people or systems who originally created the data. It should also include self-reported demographic or identity information for the source data creators if this information is available. -->

The source videos were created by various YouTube users. The dataset annotations were curated as part of the authors' research.

## Bias, Risks, and Limitations

<!-- This section is meant to convey both technical and sociotechnical limitations. -->

<!-- This section is meant to convey recommendations with respect to the bias, risk, and technical limitations. -->

- Bias: The dataset includes drones in specific environments and lighting conditions, which may limit its generalizability.
- Limitations:
  - The dataset does not cover all drone types or edge cases.
  - It may not be suitable for real-time applications without modifications.

## Citation

<!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->

**BibTeX:**

```
@article{pawelczyk2020drone,
  title={Real World Object Detection Dataset for Quadcopter Unmanned Aerial Vehicle Detection},
  author={Pawełczyk, Maciej and Wojtyra, Marek},
  journal={IEEE Access},
  volume={8},
  pages={174394--174409},
  year={2020},
  publisher={IEEE},
  doi={10.1109/ACCESS.2020.3026192}
}
```

**APA:**

Pawełczyk, M., & Wojtyra, M. (2020). Real World Object Detection Dataset for Quadcopter Unmanned Aerial Vehicle Detection. IEEE Access, 8, 174394-174409. https://doi.org/10.1109/ACCESS.2020.3026192

## More Information

For details, refer to the [original GitHub repository](https://github.com/Maciullo/DroneDetectionDataset).

## Dataset Card Authors

- me, [pathikg](https://huggingface.co/pathikg) 

## Dataset Card Contact

For questions, contact [pathikg](https://huggingface.co/pathikg)