dukang92 commited on
Commit
8db4337
·
verified ·
1 Parent(s): 62f2c2c

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +238 -0
README.md CHANGED
@@ -1,3 +1,241 @@
1
  ---
2
  license: cc-by-nc-sa-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-nc-sa-4.0
3
+ pretty_name: UAVLight
4
+ task_categories:
5
+ - image-to-image
6
+ - image-to-3d
7
+ - depth-estimation
8
+ - robotics
9
+ tags:
10
+ - computer-vision
11
+ - novel-view-synthesis
12
+ - 3d-reconstruction
13
+ - gaussian-splatting
14
+ - nerf
15
+ - relighting
16
+ - illumination-robustness
17
+ - uav
18
+ - outdoor-scenes
19
+ size_categories:
20
+ - 1K<n<10K
21
  ---
22
+
23
+ # UAVLight: A Benchmark for Illumination-Robust 3D Reconstruction in UAV Scenes
24
+
25
+ <!--
26
+ Teaser placeholder:
27
+ Upload a teaser image to this repository, for example:
28
+ assets/teaser.png
29
+
30
+ Then uncomment the line below:
31
+
32
+ ![UAVLight teaser](assets/teaser.png)
33
+ -->
34
+
35
+ **UAVLight** is a benchmark dataset for evaluating **illumination-robust 3D reconstruction** and **novel-view synthesis** in outdoor UAV scenes. Unlike standard reconstruction datasets that are typically captured under relatively stable lighting, UAVLight focuses on challenging real-world scenarios where appearance can change significantly due to sunlight direction, shadows, exposure variation, and outdoor illumination conditions.
36
+
37
+ The dataset provides multi-view UAV images, camera reconstruction files, train/test splits, sun direction annotations, and optional geometry assets. It is designed to support research on lighting-aware reconstruction, robust novel-view synthesis, relighting-aware evaluation, and outdoor Gaussian Splatting / NeRF-style scene modeling.
38
+
39
+ This dataset accompanies the paper:
40
+
41
+ **UAVLight: A Benchmark for Illumination-Robust 3D Reconstruction in Unmanned Aerial Vehicle (UAV) Scenes**
42
+
43
+ ## Overview
44
+
45
+ UAVLight is intended to evaluate whether a 3D reconstruction or novel-view synthesis method can maintain stable geometry and appearance quality under outdoor illumination variations. The benchmark is particularly useful for studying:
46
+
47
+ - illumination-robust 3D reconstruction
48
+ - novel-view synthesis for UAV-captured scenes
49
+ - outdoor scene reconstruction under changing sunlight and shadows
50
+ - lighting-aware Gaussian Splatting and NeRF-style methods
51
+ - cross-view reconstruction consistency under illumination variation
52
+ - relighting and lighting-transfer evaluation
53
+
54
+ Each scene contains multi-view images, sparse reconstruction outputs, predefined train/test splits, sun direction annotations, and optional geometry assets such as point clouds and meshes.
55
+
56
+ ## Repository Structure
57
+
58
+ The Hugging Face repository is organized as follows:
59
+
60
+ ```text
61
+ UAVLight/
62
+ README.md
63
+
64
+ data/
65
+ <scene_id>.zip
66
+ <scene_id>.zip
67
+ ...
68
+
69
+ metadata/
70
+ scenes.csv
71
+ zip_sizes.csv
72
+ file_list.txt
73
+ zip_list.txt
74
+ summary.txt
75
+ ```
76
+
77
+ The `data/` directory contains scene-level zip archives. Each zip file corresponds to one UAV scene. The `metadata/` directory provides summary files describing the released scenes, archive sizes, and file lists.
78
+
79
+ ## Scene Archive Structure
80
+
81
+ After extracting a scene archive, the directory structure is:
82
+
83
+ ```text
84
+ <scene_id>/
85
+ images/
86
+ sparse/
87
+ dense_points.ply
88
+ downsampled_points.ply
89
+ mesh.ply
90
+ split.csv
91
+ sun_directions.txt
92
+ train_list.txt
93
+ test_list.txt
94
+ ```
95
+
96
+ For example:
97
+
98
+ ```text
99
+ 1121211223101030/
100
+ images/
101
+ sparse/
102
+ dense_points.ply
103
+ downsampled_points.ply
104
+ mesh.ply
105
+ split.csv
106
+ sun_directions.txt
107
+ train_list.txt
108
+ test_list.txt
109
+ ```
110
+
111
+ ## File Descriptions
112
+
113
+ ### `images/`
114
+
115
+ This folder contains the multi-view RGB images for the scene. These images are used as the main visual observations for reconstruction, novel-view synthesis, and evaluation.
116
+
117
+ ### `sparse/`
118
+
119
+ This folder contains sparse reconstruction files, such as camera poses and COLMAP-style sparse reconstruction outputs. These files can be used to initialize or evaluate reconstruction methods that rely on calibrated cameras.
120
+
121
+ ### `split.csv`
122
+
123
+ This file records the predefined data split information for the scene. It can be used to identify which images belong to training and testing subsets.
124
+
125
+ ### `train_list.txt`
126
+
127
+ This file contains the list of training images used for scene reconstruction or model fitting.
128
+
129
+ ### `test_list.txt`
130
+
131
+ This file contains the list of testing images used for novel-view synthesis and benchmark evaluation.
132
+
133
+ ### `sun_directions.txt`
134
+
135
+ This file provides sun direction annotations associated with the scene/images. These annotations are useful for illumination-aware reconstruction, lighting transfer, relighting-related analysis, and evaluating robustness under outdoor lighting variation.
136
+
137
+ ### `dense_points.ply`
138
+
139
+ Dense point cloud reconstructed for the scene. This is provided as an optional geometry asset and may be useful for visualization, geometry analysis, or method initialization.
140
+
141
+ ### `downsampled_points.ply`
142
+
143
+ A downsampled version of the point cloud. This file is smaller and can be useful for quick visualization or lightweight processing.
144
+
145
+ ### `mesh.ply`
146
+
147
+ A reconstructed mesh for the scene. This is provided as an optional geometry asset and may be useful for visualization or geometry-related analysis.
148
+
149
+ ## Metadata Files
150
+
151
+ The `metadata/` directory contains several files to help users inspect and manage the dataset.
152
+
153
+ ### `metadata/scenes.csv`
154
+
155
+ A scene-level summary file. Each row corresponds to one scene and records whether the expected files are available, including image folders, sparse reconstruction files, geometry assets, sun direction annotations, and train/test split files.
156
+
157
+ ### `metadata/zip_sizes.csv`
158
+
159
+ A summary of all released scene archives and their file sizes.
160
+
161
+ ### `metadata/file_list.txt`
162
+
163
+ A full file list generated from the original packed dataset directory.
164
+
165
+ ### `metadata/zip_list.txt`
166
+
167
+ A list of all released scene-level zip archives.
168
+
169
+ ### `metadata/summary.txt`
170
+
171
+ A compact summary of the release, including the number of scenes, number of zip archives, and total compressed size.
172
+
173
+ ## Download
174
+
175
+ You can download the full dataset using the Hugging Face CLI:
176
+
177
+ ```bash
178
+ huggingface-cli download dukang92/UAVLight --repo-type dataset --local-dir UAVLight
179
+ ```
180
+
181
+ Alternatively, you can download individual scene archives from the `data/` folder.
182
+
183
+ For example, after downloading one scene archive:
184
+
185
+ ```bash
186
+ unzip data/<scene_id>.zip -d UAVLight_scenes/
187
+ ```
188
+
189
+ The extracted scene will follow the structure described above.
190
+
191
+ ## Usage Example
192
+
193
+ A typical workflow is:
194
+
195
+ ```text
196
+ 1. Download the dataset or selected scene archives.
197
+ 2. Extract the scene zip files.
198
+ 3. Use train_list.txt for reconstruction or model training.
199
+ 4. Use test_list.txt for novel-view synthesis evaluation.
200
+ 5. Use sparse/ camera files for pose information.
201
+ 6. Optionally use sun_directions.txt for illumination-aware analysis.
202
+ 7. Optionally use dense_points.ply, downsampled_points.ply, or mesh.ply for geometry visualization or initialization.
203
+ ```
204
+
205
+ ## Intended Use
206
+
207
+ UAVLight is intended for academic research on robust 3D reconstruction and novel-view synthesis in outdoor UAV scenes. Potential use cases include:
208
+
209
+ - benchmarking illumination-robust reconstruction methods
210
+ - evaluating Gaussian Splatting and NeRF-based methods under outdoor lighting variation
211
+ - studying the effect of sunlight, shadows, and exposure variation on 3D reconstruction
212
+ - developing lighting-aware scene representations
213
+ - evaluating relighting or lighting-transfer consistency in reconstructed scenes
214
+
215
+ ## Limitations
216
+
217
+ UAVLight focuses on outdoor UAV scenes and illumination robustness. The dataset is not intended to cover all possible outdoor environments, weather conditions, or dynamic scene changes. Users should also note that geometry assets such as point clouds and meshes are provided as auxiliary reconstruction outputs and may not be perfect ground truth.
218
+
219
+ ## License
220
+
221
+ This dataset is released for non-commercial research use only under the license specified in this repository.
222
+
223
+ ## Citation
224
+
225
+ If you use UAVLight in your research, please cite:
226
+
227
+ ```bibtex
228
+ @inproceedings{du2026uavlight,
229
+ title = {UAVLight: A Benchmark for Illumination-Robust 3D Reconstruction in Unmanned Aerial Vehicle (UAV) Scenes},
230
+ author = {Kang Du and Xue Liao and Junpeng Xia and Chaozheng Guo and Yi Gu and Yirui Guan and Duotun Wang and Sheng Huang and Zeyu Wang},
231
+ booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
232
+ year = {2026}
233
+ }
234
+ ```
235
+
236
+ ## Contact
237
+
238
+ For questions about the dataset, please contact:
239
+
240
+ **Kang Du**
241
+ Email: dukang92@gmail.com