OSCD_RGB / README.md
blanchon's picture
🤗 Push-to-Hub OSCD RGB
ac2502d
metadata
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
      num_examples: 14
    - name: test
      num_bytes: 23804288
      num_examples: 10
  download_size: 38020647
  dataset_size: 74488385
configs:
  - config_name: default
    data_files:
      - split: train
        path: data/train-*
      - split: test
        path: data/test-*

OSCD RGB

OSCD RGB

The Onera Satellite Change Detection (OSCD) dataset is a change detection dataset that focuses on multispectral (MS) images taken by the ESA Sentinel-2 satellite. 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.

Description

The dataset is available in two versions: RGB only (this repo) and all 13 Multispectral (MS) Sentinel-2 bands.

  • 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").

from datasets import load_dataset
OSCD_RGB = load_dataset("blanchon/OSCD_RGB")

Citation

If you use the EuroSAT dataset in your research, please consider citing the following publication:

@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}
}