HanboYangC commited on
Commit
67b32cb
·
verified ·
1 Parent(s): d01e0c4

Add dataset card and assets

Browse files
README.md ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: BFD-UAV2K
3
+ task_categories:
4
+ - object-detection
5
+ language:
6
+ - en
7
+ tags:
8
+ - uav
9
+ - building-facade
10
+ - defect-detection
11
+ - object-detection
12
+ - computer-vision
13
+ size_categories:
14
+ - 1K<n<10K
15
+ ---
16
+
17
+ # BFD-UAV2K: UAV-Based Building Facade Defect Detection
18
+
19
+ **BFD-UAV2K** is a realistic UAV-based building facade defect dataset and benchmark for detecting facade defects in full-frame inspection images. The dataset targets practical UAV inspection settings where defects are often small, sparse, low-contrast, and embedded in complex facade backgrounds.
20
+
21
+ <p align="center">
22
+ <img src="assets/pipeline.png" alt="BFD-UAV2K pipeline and benchmark framework" width="92%">
23
+ </p>
24
+
25
+ ## Highlights
26
+
27
+ - **2,000 full-frame UAV images** collected from real-world building facade inspection campaigns.
28
+ - **Fixed benchmark split:** 1,600 training images, 200 validation images, and 200 test images.
29
+ - **Single detection class:** `defect`, covering cracking, spalling, and hollow-drum-like facade damage.
30
+ - **Realistic inspection scenes:** marble panels, windows, concrete/cement surfaces, pipes, cables, air-conditioning units, and other facade-side interference.
31
+ - **Multiple detector families:** YOLO, RT-DETR, Faster R-CNN, and Cascade R-CNN are evaluated under a unified benchmark protocol.
32
+ - **Deployment-oriented analysis:** speed, localization quality, low-data behavior, and hard-case failure patterns are analyzed together.
33
+
34
+ ## Dataset Overview
35
+
36
+ | Item | Value |
37
+ |---|---:|
38
+ | Images | 2,000 |
39
+ | Positive / negative images | 912 / 1,088 |
40
+ | Defect instances | 2,664 boxes |
41
+ | Split | 1,600 / 200 / 200 |
42
+ | Annotation format | YOLO TXT + COCO JSON |
43
+ | Class | `defect` |
44
+ | UAV platform | DJI Mini 3 |
45
+ | Capture range | 2-30 m wall-facing UAV inspection geometry |
46
+
47
+ <p align="center">
48
+ <img src="assets/positive_negative_examples.png" alt="Positive and negative examples" width="82%">
49
+ </p>
50
+
51
+ ## Benchmark Models
52
+
53
+ The benchmark compares representative detectors from three major detection families:
54
+
55
+ | Family | Models |
56
+ |---|---|
57
+ | One-stage detectors | YOLOv5mu, YOLOv8m, YOLOv11m |
58
+ | Transformer detector | RT-DETR-L |
59
+ | Two-stage detectors | Faster R-CNN, Cascade R-CNN |
60
+
61
+ ## Main Results
62
+
63
+ | Model | mAP@0.5 | mAP@0.5:0.95 | Precision | Recall | F1 | Time (ms/img) |
64
+ |---|---:|---:|---:|---:|---:|---:|
65
+ | YOLOv5mu | **0.7193** | 0.3631 | 0.8043 | 0.6491 | 0.7184 | **6.00** |
66
+ | YOLOv8m | 0.6710 | 0.3347 | 0.7753 | 0.5965 | 0.6743 | 6.65 |
67
+ | YOLOv11m | 0.6799 | 0.3416 | **0.8059** | 0.5827 | 0.6763 | 7.00 |
68
+ | RT-DETR-L | 0.7116 | **0.3811** | 0.7781 | **0.6772** | **0.7241** | 14.84 |
69
+ | Faster R-CNN | 0.5750 | 0.2810 | 0.5752 | 0.6526 | 0.6115 | 12.41 |
70
+ | Cascade R-CNN | 0.5740 | 0.2960 | 0.5735 | 0.6491 | 0.6090 | 25.77 |
71
+
72
+ YOLOv5mu provides the strongest accuracy-speed trade-off, while RT-DETR-L achieves the best strict-IoU localization score and F1 score. Two-stage detectors are more sensitive to repetitive facade textures and weak defect boundaries in this benchmark.
73
+
74
+ <p align="center">
75
+ <img src="assets/qualitative_comparison.png" alt="Qualitative comparison across baseline detectors" width="96%">
76
+ </p>
77
+
78
+ ## Low-Data Behavior
79
+
80
+ The benchmark also evaluates model behavior under reduced training sizes: 100, 200, 400, and 800 samples. YOLO-family detectors show stable improvement as more data becomes available, while RT-DETR-L is more sensitive in very low-data regimes but becomes highly competitive with more labeled samples.
81
+
82
+ <p align="center">
83
+ <img src="assets/data_scale_curves.png" alt="Detector performance under different training data sizes" width="90%">
84
+ </p>
85
+
86
+ ## Hard Cases
87
+
88
+ BFD-UAV2K includes practical facade inspection challenges that expose clear differences between detector families:
89
+
90
+ | Hard-case pattern | Ratio |
91
+ |---|---:|
92
+ | Long cracks with extreme aspect ratio | 10% |
93
+ | Defect-background texture overlap | 20% |
94
+ | Multi-anomaly scenes with missed detections | 30% |
95
+ | Uneven concrete coating / non-uniform background | 30% |
96
+ | Complex structural background interference | 10% |
97
+
98
+ <p align="center">
99
+ <img src="assets/failure_cases.png" alt="Failure case analysis" width="96%">
100
+ </p>
101
+
102
+ ## Repository Contents
103
+
104
+ ```text
105
+ .
106
+ |-- README.md
107
+ |-- assets/
108
+ | |-- pipeline.png
109
+ | |-- positive_negative_examples.png
110
+ | |-- qualitative_comparison.png
111
+ | |-- data_scale_curves.png
112
+ | `-- failure_cases.png
113
+ |-- data/
114
+ |-- annotations/
115
+ |-- labels/
116
+ `-- scripts/
117
+ ```
118
+
119
+ The public dataset release is hosted in this Hugging Face dataset repository. The companion GitHub repository is available at [HanboYangC/BFD-UAV2K](https://github.com/HanboYangC/BFD-UAV2K).
120
+
121
+ ## Citation
122
+
123
+ ```bibtex
124
+ @article{bfduav2k,
125
+ title = {BFD-UAV2K: A Realistic Dataset and Benchmark for Unmanned Aerial Vehicle-Assisted Building Facade Defect Detection},
126
+ author = {},
127
+ journal = {},
128
+ year = {}
129
+ }
130
+ ```
131
+
132
+ ## License
133
+
134
+ License information will be added with the official public release.
135
+
136
+ ## Organizer
137
+
138
+ Kang Yang, email: kyang16866@gmail.com
139
+ Ruoyu Chen, email:
assets/data_scale_curves.png ADDED

Git LFS Details

  • SHA256: 983e6f46b02f8a5769f9a9c7f78f806780b8fef271f533eb58e0d7cfde33c872
  • Pointer size: 131 Bytes
  • Size of remote file: 383 kB
assets/failure_cases.png ADDED

Git LFS Details

  • SHA256: 4318919eb74eaeac938cfb76d1eed4c550650de6e13e2d910a06a2fc065e3c29
  • Pointer size: 132 Bytes
  • Size of remote file: 5.07 MB
assets/pipeline.png ADDED

Git LFS Details

  • SHA256: 30e3bf2b87e29890c8faf3aa194199efaa692d513970421c475d1f2123208023
  • Pointer size: 131 Bytes
  • Size of remote file: 790 kB
assets/positive_negative_examples.png ADDED

Git LFS Details

  • SHA256: 09f253abdddf4d837e4ec74f2973b766a19cfb492455738edf13f228f5ece50e
  • Pointer size: 132 Bytes
  • Size of remote file: 3.5 MB
assets/qualitative_comparison.png ADDED

Git LFS Details

  • SHA256: e55a245f937a0e93c83918c2242cf25c920c1117cabcd4af3312e59ebf5176ac
  • Pointer size: 132 Bytes
  • Size of remote file: 5.31 MB