blaz-r commited on
Commit
a20b3bf
·
verified ·
1 Parent(s): 9dc297f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +53 -0
README.md CHANGED
@@ -24,3 +24,56 @@ configs:
24
  - split: test
25
  path: data/test-*
26
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
24
  - split: test
25
  path: data/test-*
26
  ---
27
+
28
+ # Onera Satellite Change Detection Dataset - RGB - Cropped to 96x96 patches
29
+
30
+ <!-- Provide a quick summary of the dataset. -->
31
+
32
+ The Onera Satellite Change Detection dataset addresses the issue of detecting changes between satellite images from different dates.
33
+
34
+ It comprises 24 pairs of multispectral images taken from the Sentinel-2 satellites between 2015 and 2018. Locations are picked all over the world, in Brazil, USA, Europe, Middle-East and Asia. For each location, registered pairs of 13-band multispectral satellite images obtained by the Sentinel-2 satellites are provided. Images vary in spatial resolution between 10m, 20m and 60m.
35
+
36
+ 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.
37
+
38
+ ## Dataset Details
39
+
40
+ ### Dataset Description
41
+
42
+ The images were cropped to 96x96 patches to enable direct usage with the standard protocol.
43
+
44
+ - **License:** CC BY-NC-SA
45
+
46
+ ### Dataset Sources
47
+
48
+ <!-- Provide the basic links for the dataset. -->
49
+
50
+ - **Homepage:** [https://rcdaudt.github.io/oscd/](https://rcdaudt.github.io/oscd/)
51
+ - **Paper:** [ArXiv](https://arxiv.org/abs/1810.08468)
52
+
53
+ ## Uses
54
+
55
+ <!-- Address questions around how the dataset is intended to be used. -->
56
+
57
+ ```python
58
+ from datasets import load_dataset
59
+
60
+ oscd96 = load_dataset("blaz-r/OSCD_RGB_Cropped_96")
61
+
62
+ >>> oscd96["train"]
63
+ # single "sample" with 3 features: "imageA", "imageB", "label"
64
+ ```
65
+
66
+ ## Citation
67
+
68
+ If you use this work for your projects, please take the time to cite the original paper:
69
+
70
+ ```bibtex
71
+ @inproceedings{daudt2018urban,
72
+ title={Urban change detection for multispectral earth observation using convolutional neural networks},
73
+ author={Daudt, Rodrigo Caye and Le Saux, Bertr and Boulch, Alexandre and Gousseau, Yann},
74
+ booktitle={IGARSS 2018-2018 IEEE International Geoscience and Remote Sensing Symposium},
75
+ pages={2115--2118},
76
+ year={2018},
77
+ organization={IEEE}
78
+ }
79
+ ```