File size: 3,343 Bytes
5c07a00
 
 
 
 
 
 
 
 
 
 
 
 
 
8062826
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5c07a00
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
---
language: en
license: unknown
size_categories:
- 10K<n<100K
task_categories:
- change-detection
pretty_name: LEVIR CD+
tags:
- remote-sensing
- earth-observation
- geospatial
- satellite-imagery
- land-cover-classification
dataset_info:
  features:
  - name: image1
    dtype: image
  - name: image2
    dtype: image
  - name: mask
    dtype: image
  splits:
  - name: train
    num_bytes: 2472433175.0
    num_examples: 637
  - name: test
    num_bytes: 1316259239.0
    num_examples: 348
  download_size: 3788415141
  dataset_size: 3788692414.0
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: test
    path: data/test-*
---

# LEVIR CD+

<!-- Dataset thumbnail -->
![LEVIR CD+](./thumbnail.jpg)

<!-- Provide a quick summary of the dataset. -->
The LEVIR-CD+ dataset is an urban building change detection dataset that focuses on RGB image pairs extracted from Google Earth. This dataset consists of a total of 985 image pairs, each with a resolution of 1024x1024 pixels and a spatial resolution of 0.5 meters per pixel. The dataset includes building and land use change masks for 20 different regions in Texas, spanning the years 2002 to 2020, with a time span of 5 years between observations. LEVIR-CD+ is designed as the easier version of the S2Looking dataset, primarily due to its urban locations and near-nadir angles.
- **Paper:** https://www.mdpi.com/2072-4292/12/10/1662
- **Homepage:** https://github.com/S2Looking/Dataset

## Description

<!-- Provide a longer summary of what this dataset is. -->

The bitemporal images in LEVIR-CD are from 20 different regions that sit in several cities in Texas of the US, including Austin, Lakeway, Bee Cave, Buda, Kyle, Manor, Pflugervilletx, Dripping Springs, etc. The Figure below illustrates the geospatial distribution of our new dataset and an enlarged image patch. The captured time of our image data varies from 2002 to 2018. Images in different regions may be taken at different times. We want to introduce variations due to seasonal changes and illumination changes into our new dataset, which could help develop effective methods that can mitigate the impact of irrelevant changes on real changes.

- **Total Number of Images**: 985
- **Bands**: 3 (RGB)
- **Image Size**: 1024x1024
- **Image Resolution**: 0.5m
- **Land Cover Classes**: 2
- **Classes**: no-change, change
- **Source**: Google Earth


## Usage

To use this dataset, simply use `datasets.load_dataset("blanchon/LEVIR_CDPlus")`.
<!-- Provide any additional information on how to use this dataset. -->
```python
from datasets import load_dataset
LEVIR_CDPlus = load_dataset("blanchon/LEVIR_CDPlus")
```

## 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{Chen2020,
   AUTHOR = {Chen, Hao and Shi, Zhenwei},
   TITLE = {A Spatial-Temporal Attention-Based Method and a New Dataset for Remote Sensing Image Change Detection},
   JOURNAL = {Remote Sensing},
   VOLUME = {12},
   YEAR = {2020},
   NUMBER = {10},
   ARTICLE-NUMBER = {1662},
   URL = {https://www.mdpi.com/2072-4292/12/10/1662},
   ISSN = {2072-4292},
   DOI = {10.3390/rs12101662}
}
```