blanchon commited on
Commit
5c07a00
1 Parent(s): 0c7e0ab

🤗 Add DatasetCard

Browse files
Files changed (1) hide show
  1. README.md +70 -0
README.md ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language: en
3
+ license: unknown
4
+ size_categories:
5
+ - 10K<n<100K
6
+ task_categories:
7
+ - change-detection
8
+ pretty_name: LEVIR CD+
9
+ tags:
10
+ - remote-sensing
11
+ - earth-observation
12
+ - geospatial
13
+ - satellite-imagery
14
+ - land-cover-classification
15
+ ---
16
+
17
+ # LEVIR CD+
18
+
19
+ <!-- Dataset thumbnail -->
20
+ ![LEVIR CD+](./thumbnail.jpg)
21
+
22
+ <!-- Provide a quick summary of the dataset. -->
23
+ 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.
24
+ - **Paper:** https://www.mdpi.com/2072-4292/12/10/1662
25
+ - **Homepage:** https://github.com/S2Looking/Dataset
26
+
27
+ ## Description
28
+
29
+ <!-- Provide a longer summary of what this dataset is. -->
30
+
31
+ 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.
32
+
33
+ - **Total Number of Images**: 985
34
+ - **Bands**: 3 (RGB)
35
+ - **Image Size**: 1024x1024
36
+ - **Image Resolution**: 0.5m
37
+ - **Land Cover Classes**: 2
38
+ - **Classes**: no-change, change
39
+ - **Source**: Google Earth
40
+
41
+
42
+ ## Usage
43
+
44
+ To use this dataset, simply use `datasets.load_dataset("blanchon/LEVIR_CDPlus")`.
45
+ <!-- Provide any additional information on how to use this dataset. -->
46
+ ```python
47
+ from datasets import load_dataset
48
+ LEVIR_CDPlus = load_dataset("blanchon/LEVIR_CDPlus")
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{Chen2020,
59
+ AUTHOR = {Chen, Hao and Shi, Zhenwei},
60
+ TITLE = {A Spatial-Temporal Attention-Based Method and a New Dataset for Remote Sensing Image Change Detection},
61
+ JOURNAL = {Remote Sensing},
62
+ VOLUME = {12},
63
+ YEAR = {2020},
64
+ NUMBER = {10},
65
+ ARTICLE-NUMBER = {1662},
66
+ URL = {https://www.mdpi.com/2072-4292/12/10/1662},
67
+ ISSN = {2072-4292},
68
+ DOI = {10.3390/rs12101662}
69
+ }
70
+ ```