cmolinac commited on
Commit
bbfd7bc
·
verified ·
1 Parent(s): 6d4aec2

Upload folder using huggingface_hub

Browse files
Files changed (2) hide show
  1. README.md +219 -0
  2. workflow.png +3 -0
README.md ADDED
@@ -0,0 +1,219 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license:
5
+ - cc-by-4.0
6
+ tags:
7
+ - semantic-segmentation
8
+ - scene-understanding
9
+ - 3d-point-clouds
10
+ - multimodal
11
+ - drone-imagery
12
+ pretty_name: NEST3D - Sociable Weaver Nest 3D Dataset
13
+ ---
14
+
15
+ # NEST3D: A High-Resolution Multimodal Dataset of Sociable Weaver Tree Nests
16
+
17
+ ![NEST3D Workflow](./workflow.png)
18
+
19
+ ## Dataset Description
20
+
21
+ NEST3D is a multimodal dataset of 104 sociable weaver nests, combining drone-based RGB and multispectral imagery with a semantically annotated 3D RGB point cloud. It captures trees hosting these nests through drone-based remote sensing, providing rich spatial and spectral information to benchmark and advance scene-level semantic segmentation methods for computer vision and ecological monitoring applications.
22
+
23
+ ### Key Characteristics
24
+
25
+ - **Modality**: Multimodal (RGB imagery, multispectral bands, 3D point clouds)
26
+ - **Task**: Scene-level semantic segmentation
27
+ - **Scale**: Multiple tree-nest scenes with consistent spatial and spectral coverage
28
+ - **Annotation**: Point-level semantic labels for 3D point clouds
29
+ - **Data Source**: Drone-based RGB and multispectral imagery
30
+ - **Application Domain**: Ecological monitoring, wildlife management, 3d semantic segmenation, 3d reconstruction.
31
+
32
+ ## Dataset Organization
33
+
34
+ The dataset is organized into modality-specific directories to support flexible access and reuse:
35
+
36
+ ### Directory Structure
37
+
38
+ ```
39
+ NEST3D/
40
+ ├── train/
41
+ │ ├── sample_001/
42
+ │ │ ├── RGB/ # RGB drone images
43
+ │ │ │ ├── sample001_RGB_001.JPG
44
+ │ │ │ └── ...
45
+ │ │ ├── MS/ # Multispectral imagery
46
+ │ │ │ ├── Green/
47
+ │ │ │ │ ├── sample001_G_001.TIF
48
+ │ │ │ │ └── ...
49
+ │ │ │ ├── Red/
50
+ │ │ │ │ ├── sample001_R_001.TIF
51
+ │ │ │ │ └── ...
52
+ │ │ │ ├── Red_Edge/
53
+ │ │ │ │ ├── sample001_RE_001.TIF
54
+ │ │ │ │ └── ...
55
+ │ │ │ └── NIR/
56
+ │ │ │ ├── sample001_NIR_001.TIF
57
+ │ │ │ └── ...
58
+ │ │ └── sample001.npy # 3D point cloud with labels
59
+ │ └── sample_002/
60
+ │ └── ...
61
+
62
+ └── test/
63
+ ├── sample_084/
64
+ │ ├── RGB/
65
+ │ ├── MS/
66
+ │ └── sample084.npy
67
+ └── ...
68
+ ```
69
+
70
+ ### Data Modalities
71
+
72
+ #### 1. **RGB Imagery**
73
+ - Raw drone images from aerial acquisition
74
+ - Format: JPEG
75
+ - Organized by data split and scene identifier
76
+ - Example path: `train/sample_001/RGB/sample001_RGB_119.JPG`
77
+
78
+ #### 2. **Multispectral Imagery**
79
+ - Four spectral bands from the same acquisitions as RGB
80
+ - Organized into four band-specific folders:
81
+ - **Green (G)**: Green channel imagery
82
+ - **Red (R)**: Red channel imagery
83
+ - **Red Edge (RE)**: Red Edge channel for vegetation analysis
84
+ - **NIR**: Near-Infrared channel for vegetation health assessment
85
+ - Format: GeoTIFF (.TIF)
86
+ - Example paths:
87
+ - `train/sample_001/MS/Green/sample001_G_119.TIF`
88
+ - `train/sample_001/MS/Red/sample001_R_119.TIF`
89
+ - `train/sample_001/MS/Red_Edge/sample001_RE_119.TIF`
90
+ - `train/sample_001/MS/NIR/sample001_NIR_119.TIF`
91
+
92
+ #### 3. **3D Point Clouds**
93
+ - One NumPy file per scene containing the complete 3D reconstruction
94
+ - Format: `.npy` (NumPy binary format)
95
+ - Per-point attributes: `[x, y, z, r, g, b, label]`
96
+ - **x, y, z**: 3D spatial coordinates (meters)
97
+ - **r, g, b**: RGB color values (0-255)
98
+ - **label**: Semantic class label (integer)
99
+ - Example path: `train/sample_001/sample001.npy`
100
+
101
+ ## Data Splits
102
+
103
+ The dataset is divided into fixed training and test sets:
104
+
105
+ - **Training Set**: Used for model training and development
106
+ - **Test Set**: Reserved for model evaluation and benchmarking
107
+
108
+ Each split contains a consistent collection of scenes to ensure reliable evaluation.
109
+
110
+ ## Usage
111
+
112
+ ### Loading 3D Point Clouds
113
+
114
+ ```python
115
+ import numpy as np
116
+
117
+ # Load point cloud with semantic labels
118
+ point_cloud = np.load('train/sample_001/sample001.npy')
119
+
120
+ # Extract coordinates
121
+ xyz = point_cloud[:, :3]
122
+
123
+ # Extract colors
124
+ rgb = point_cloud[:, 3:6]
125
+
126
+ # Extract semantic labels
127
+ labels = point_cloud[:, 6]
128
+ ```
129
+
130
+ ### Loading Multispectral Imagery
131
+
132
+ ```python
133
+ from PIL import Image
134
+ import numpy as np
135
+
136
+ # Load a single band
137
+ green_band = np.array(Image.open('train/sample_001/MS/Green/sample001_G_001.TIF'))
138
+
139
+ # Load all four bands for a given image
140
+ green = np.array(Image.open('train/sample_001/MS/Green/sample001_G_001.TIF'))
141
+ red = np.array(Image.open('train/sample_001/MS/Red/sample001_R_001.TIF'))
142
+ red_edge = np.array(Image.open('train/sample_001/MS/Red_Edge/sample001_RE_001.TIF'))
143
+ nir = np.array(Image.open('train/sample_001/MS/NIR/sample001_NIR_001.TIF'))
144
+
145
+ # Stack into multiband image
146
+ multispectral = np.stack([green, red, red_edge, nir], axis=-1)
147
+ ```
148
+
149
+ ### Using with Hugging Face Datasets Library
150
+
151
+ ```python
152
+ from datasets import load_dataset
153
+
154
+ # Load the dataset
155
+ dataset = load_dataset('NEST3D/dataset')
156
+ ```
157
+
158
+ ## Downloading the Dataset
159
+
160
+ ### Option 1: Using Hugging Face Hub
161
+ ```bash
162
+ pip install huggingface_hub
163
+
164
+ huggingface-cli download NEST3D/dataset --repo-type dataset --local-dir ./NEST3D
165
+ ```
166
+
167
+ ### Option 2: Direct Download
168
+ Visit [https://huggingface.co/datasets/NEST3D/dataset](https://huggingface.co/datasets/NEST3D/dataset) and download files directly.
169
+
170
+ ## Citation
171
+
172
+ If you use this dataset in your research, please cite:
173
+
174
+ ```bibtex
175
+ @dataset{NEST3D,
176
+ title={NEST3D: A High-Resolution Multimodal Dataset of Sociable Weaver Tree Nests},
177
+ organization={NEST3D},
178
+ url={https://huggingface.co/datasets/NEST3D},
179
+ year={2026}
180
+ }
181
+ ```
182
+
183
+ ## License
184
+
185
+ This dataset is released under the Creative Commons Attribution 4.0 International (CC-BY-4.0) License. You are free to use, distribute, and adapt the dataset as long as you provide appropriate attribution.
186
+
187
+ See [LICENSE](LICENSE) for details.
188
+
189
+ ## Dataset Information
190
+
191
+ - **Total Size**:
192
+ - **Number of Scenes**: 104 samples
193
+ - **Modalities**: RGB, Multispectral (4 bands), 3D Point Clouds
194
+ - **Image Format**: JPEG (RGB), GeoTIFF (Multispectral)
195
+ - **Point Cloud Format**: NumPy arrays
196
+ - **Annotation Type**: Per-point semantic labels
197
+
198
+ ## Acknowledgments
199
+
200
+ This work was funded by:
201
+
202
+ - **European Union's Horizon Europe** research and innovation programme through the Marie Skłodowska-Curie project **"WildDrone – Autonomous Drones for Nature Conservation"** (grant agreement no. 101071224)
203
+ - **EPSRC-funded** "Autonomous Drones for Nature Conservation Missions" grant (EP/X029077/1)
204
+ - **Swiss State Secretariat for Education, Research and Innovation (SERI)** under contract number 22.00280
205
+
206
+ We extend our gratitude to our collaborators and field partners in Namibia for their invaluable support during data collection.
207
+
208
+ ## Contact & Support
209
+
210
+ For questions, issues, or contributions, please visit the [dataset discussion forum](https://huggingface.co/datasets/NEST3D/dataset/discussions).
211
+
212
+ ## Disclaimer
213
+
214
+ The NEST3D dataset is provided as-is for research and development purposes. Users are responsible for ensuring their use complies with all applicable laws and regulations, particularly regarding ecological monitoring and wildlife protection.
215
+
216
+ ---
217
+
218
+ **Last Updated**: February 2026
219
+ **Dataset Version**: 1.0
workflow.png ADDED

Git LFS Details

  • SHA256: 4dc68f6d14c31a4e48be15a8496ff64c1aac40e6ebbab39d6e1667712584a8e1
  • Pointer size: 132 Bytes
  • Size of remote file: 5.27 MB