Datasets:

Modalities:
Tabular
Formats:
parquet
DOI:
Libraries:
Datasets
Dask
License:
edornd commited on
Commit
5ea7de5
1 Parent(s): f80191b

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +45 -3
README.md CHANGED
@@ -1,3 +1,45 @@
1
- ---
2
- license: mit
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ ---
4
+
5
+ # FMARS: Foundation Model Annotations for Remote Sensing Images
6
+
7
+
8
+ FMARS is a large-scale dataset of Very High Resolution (VHR) remote sensing images with annotations generated using Vision Foundation Models.
9
+ The dataset focuses on disaster management applications and provides pre-event imagery and annotations for major crisis events worldwide from 2021 to 2023.
10
+
11
+ ## Dataset Features
12
+ - **VHR Imagery**: The dataset uses pre-event VHR satellite imagery from the [Maxar Open Data Program](https://www.maxar.com/open-data), covering a total surface area of over 200,000 km^2.
13
+ - **Automatic Annotations**: Annotations are generated using a novel pipeline that combines the Segment Anything Model (SAM) and GroundingDINO to extract segmentation masks for buildings, roads, and high vegetation.
14
+ - **Disaster Management Focus**: The dataset is designed for use in disaster management applications such as damage assessment and risk analysis.
15
+
16
+ ## Annotation Pipeline
17
+ The annotation workflow uses a combination of open data sources and Vision Foundation Models:
18
+ 1. Building footprints and road graphs are obtained from Microsoft's Building Footprints and Road Detection datasets and converted into prompts.
19
+ 2. High vegetation bounding boxes are generated using GroundingDINO with text queries.
20
+ 3. The bounding box prompts are fed into SAM to extract fine-grained segmentation masks for each category.
21
+ 4. The resulting masks are stored to allow for both instance and semantic segmentation tasks.
22
+
23
+ ## Dataset Structure
24
+ FMARS dataset provides annotations in parquet format.
25
+ The corresponding VHR images can be obtained from the [Maxar Open Data Program](https://www.maxar.com/open-data) website.
26
+ We keep tha naming convention of the original files, to facilitate the match between images and labels.
27
+
28
+ For the full list of events and their details, please refer to the original paper, linked above.
29
+
30
+ ## Applications and Benchmarks
31
+ FMARS represents a first attempt at large-scale mapping, but it can be used to train semantic segmentation models for disaster management tasks, with precautions.
32
+
33
+ ## License and Citation
34
+ FMARS annotations are licensed under MIT.
35
+ If you use this dataset or want to talk about it in your research, please cite the following paper:
36
+
37
+ ```bibtex
38
+ @inproceedings{fmars2024,
39
+ title={FMARS: Annotating Remote Sensing Images for Disaster Management using Foundation Models},
40
+ author={Arnaudo, Edoardo and Lungo Vaschetti, Jacopo and Innocenti, Lorenzo and Barco, Luca and Lisi, Davide and Fissore, Vanina and Rossi, Claudio},
41
+ booktitle={IGARSS 2024 - 2024 IEEE International Geoscience and Remote Sensing Symposium},
42
+ year={2024},
43
+ organization={IEEE}
44
+ }
45
+ ```