🤗 Add DatasetCard
Browse files
README.md
ADDED
@@ -0,0 +1,66 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language: en
|
3 |
+
license: unknown
|
4 |
+
task_categories:
|
5 |
+
- change-detection
|
6 |
+
paperswithcode_id: oscd
|
7 |
+
pretty_name: OSCD RGB
|
8 |
+
tags:
|
9 |
+
- remote-sensing
|
10 |
+
- earth-observation
|
11 |
+
- geospatial
|
12 |
+
- satellite-imagery
|
13 |
+
- change-detection
|
14 |
+
- sentinel-2
|
15 |
+
---
|
16 |
+
|
17 |
+
# OSCD RGB
|
18 |
+
|
19 |
+
<!-- Dataset thumbnail -->
|
20 |
+
![OSCD RGB](./thumbnail.png)
|
21 |
+
|
22 |
+
<!-- Provide a quick summary of the dataset. -->
|
23 |
+
The [Onera Satellite Change Detection](https://rcdaudt.github.io/oscd/) (OSCD) dataset is a change detection dataset that focuses on multispectral (MS) images taken by the [ESA Sentinel-2 satellite](https://sentinel.esa.int/web/sentinel/missions/sentinel-2). This dataset provides 24 registered image pairs from various continents, captured between the years 2015 and 2018. Along with the image pairs, the dataset includes binary change masks that highlight areas where changes have occurred. Pixel-level change ground truth is provided for all 14 training and 10 test image pairs. The annotated changes focus on urban changes, such as new buildings or new roads. These data can be used for training and setting parameters of change detection algorithms.
|
24 |
+
- **Paper:** https://arxiv.org/abs/1810.08468
|
25 |
+
- **Homepage:** https://github.com/phelber/OSCD
|
26 |
+
|
27 |
+
## Description
|
28 |
+
|
29 |
+
<!-- Provide a longer summary of what this dataset is. -->
|
30 |
+
|
31 |
+
The dataset is available in two versions: **RGB only** (this repo) and all 13 [Multispectral (MS) Sentinel-2 bands](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-2-msi/resolutions/spatial).
|
32 |
+
|
33 |
+
- **Total Number of Images**: 24
|
34 |
+
- **Bands**: 3 (RGB)
|
35 |
+
- **Image Size**: 10000x10000
|
36 |
+
- **Image Resolution**: 10m
|
37 |
+
- **Land Cover Classes**: 2
|
38 |
+
- **Classes**: no change, change
|
39 |
+
- **Source**: Sentinel-2
|
40 |
+
|
41 |
+
|
42 |
+
## Usage
|
43 |
+
|
44 |
+
To use this dataset, simply use `datasets.load_dataset("blanchon/OSCD_RGB")`.
|
45 |
+
<!-- Provide any additional information on how to use this dataset. -->
|
46 |
+
```python
|
47 |
+
from datasets import load_dataset
|
48 |
+
OSCD_RGB = load_dataset("blanchon/OSCD_RGB")
|
49 |
+
```
|
50 |
+
|
51 |
+
## Citation
|
52 |
+
|
53 |
+
<!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
|
54 |
+
If you use the EuroSAT dataset in your research, please consider citing the following publication:
|
55 |
+
|
56 |
+
|
57 |
+
```bibtex
|
58 |
+
@article{daudt2018urban,
|
59 |
+
title = {Urban Change Detection for Multispectral Earth Observation Using Convolutional Neural Networks},
|
60 |
+
author = {R. C. Daudt and B. L. Saux and Alexandre Boulch and Y. Gousseau},
|
61 |
+
journal = {IEEE International Geoscience and Remote Sensing Symposium},
|
62 |
+
year = {2018},
|
63 |
+
doi = {10.1109/IGARSS.2018.8518015},
|
64 |
+
bibSource = {Semantic Scholar https://www.semanticscholar.org/paper/18755de13d2d868255bbf332fa80ec218163c74e}
|
65 |
+
}
|
66 |
+
```
|