OSCD_RGB / README.md
blanchon's picture
🤗 Push-to-Hub OSCD RGB
ac2502d
---
language: en
license: unknown
task_categories:
- change-detection
paperswithcode_id: oscd
pretty_name: OSCD RGB
tags:
- remote-sensing
- earth-observation
- geospatial
- satellite-imagery
- change-detection
- sentinel-2
dataset_info:
features:
- name: image1
dtype: image
- name: image2
dtype: image
- name: mask
dtype: image
splits:
- name: train
num_bytes: 50684097.0
num_examples: 14
- name: test
num_bytes: 23804288.0
num_examples: 10
download_size: 38020647
dataset_size: 74488385.0
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
- split: test
path: data/test-*
---
# OSCD RGB
<!-- Dataset thumbnail -->
![OSCD RGB](./thumbnail.png)
<!-- Provide a quick summary of the dataset. -->
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.
- **Paper:** https://arxiv.org/abs/1810.08468
- **Homepage:** https://github.com/phelber/OSCD
## Description
<!-- Provide a longer summary of what this dataset is. -->
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).
- **Total Number of Images**: 24
- **Bands**: 3 (RGB)
- **Image Size**: 10000x10000
- **Image Resolution**: 10m
- **Land Cover Classes**: 2
- **Classes**: no change, change
- **Source**: Sentinel-2
## Usage
To use this dataset, simply use `datasets.load_dataset("blanchon/OSCD_RGB")`.
<!-- Provide any additional information on how to use this dataset. -->
```python
from datasets import load_dataset
OSCD_RGB = load_dataset("blanchon/OSCD_RGB")
```
## Citation
<!-- If there is a paper or blog post introducing the dataset, the APA and Bibtex information for that should go in this section. -->
If you use the EuroSAT dataset in your research, please consider citing the following publication:
```bibtex
@article{daudt2018urban,
title = {Urban Change Detection for Multispectral Earth Observation Using Convolutional Neural Networks},
author = {R. C. Daudt and B. L. Saux and Alexandre Boulch and Y. Gousseau},
journal = {IEEE International Geoscience and Remote Sensing Symposium},
year = {2018},
doi = {10.1109/IGARSS.2018.8518015},
bibSource = {Semantic Scholar https://www.semanticscholar.org/paper/18755de13d2d868255bbf332fa80ec218163c74e}
}
```