Update README.md
Browse files
README.md
CHANGED
@@ -2,12 +2,12 @@
|
|
2 |
license: cc-by-nc-4.0
|
3 |
---
|
4 |
|
5 |
-
# CloudSEN12
|
6 |
-
## A Benchmark Dataset for Cloud Semantic Understanding
|
7 |
|
8 |
![CloudSEN12 Images](https://cloudsen12.github.io/thumbnails/cloudsen12.gif)
|
9 |
|
10 |
-
CloudSEN12 is a
|
11 |
evenly spread throughout all continents except Antarctica. Each IP covers 5090 x 5090 meters and contains data from Sentinel-2
|
12 |
levels 1C and 2A, hand-crafted annotations of thick and thin clouds and cloud shadows, Sentinel-1 Synthetic Aperture Radar (SAR),
|
13 |
digital elevation model, surface water occurrence, land cover classes, and cloud mask results from six cutting-edge
|
@@ -17,17 +17,44 @@ CloudSEN12 is designed to support both weakly and self-/semi-supervised learning
|
|
17 |
hand-crafted labeling data: high-quality, scribble and no-annotation. For more details on how we created the dataset see our
|
18 |
paper.
|
19 |
|
20 |
-
Ready to start using [CloudSEN12](https://cloudsen12.github.io/)
|
21 |
|
22 |
-
[Download Dataset](https://cloudsen12.github.io/download.html)
|
23 |
|
24 |
-
[Paper - Scientific Data](https://www.nature.com/articles/s41597-022-01878-2)
|
25 |
|
26 |
-
[Inference on a new S2 image](https://colab.research.google.com/github/cloudsen12/examples/blob/master/example02.ipynb)
|
27 |
|
28 |
-
[Enter to cloudApp](https://github.com/cloudsen12/CloudApp)
|
29 |
|
30 |
-
[CloudSEN12 in Google Earth Engine](https://gee-community-catalog.org/projects/cloudsen12/)
|
31 |
|
32 |
-
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
license: cc-by-nc-4.0
|
3 |
---
|
4 |
|
5 |
+
# **CloudSEN12**
|
6 |
+
## **A Benchmark Dataset for Cloud Semantic Understanding**
|
7 |
|
8 |
![CloudSEN12 Images](https://cloudsen12.github.io/thumbnails/cloudsen12.gif)
|
9 |
|
10 |
+
CloudSEN12 is a LARGE dataset (~1 TB) for cloud semantic understanding that consists of 49,400 image patches (IP) that are
|
11 |
evenly spread throughout all continents except Antarctica. Each IP covers 5090 x 5090 meters and contains data from Sentinel-2
|
12 |
levels 1C and 2A, hand-crafted annotations of thick and thin clouds and cloud shadows, Sentinel-1 Synthetic Aperture Radar (SAR),
|
13 |
digital elevation model, surface water occurrence, land cover classes, and cloud mask results from six cutting-edge
|
|
|
17 |
hand-crafted labeling data: high-quality, scribble and no-annotation. For more details on how we created the dataset see our
|
18 |
paper.
|
19 |
|
20 |
+
Ready to start using **[CloudSEN12](https://cloudsen12.github.io/)**?
|
21 |
|
22 |
+
**[Download Dataset](https://cloudsen12.github.io/download.html)**
|
23 |
|
24 |
+
**[Paper - Scientific Data](https://www.nature.com/articles/s41597-022-01878-2)**
|
25 |
|
26 |
+
**[Inference on a new S2 image](https://colab.research.google.com/github/cloudsen12/examples/blob/master/example02.ipynb)**
|
27 |
|
28 |
+
**[Enter to cloudApp](https://github.com/cloudsen12/CloudApp)**
|
29 |
|
30 |
+
**[CloudSEN12 in Google Earth Engine](https://gee-community-catalog.org/projects/cloudsen12/)**
|
31 |
|
32 |
+
|
33 |
+
<br>
|
34 |
+
|
35 |
+
### **Example**
|
36 |
+
|
37 |
+
```py
|
38 |
+
import numpy as np
|
39 |
+
|
40 |
+
# Read high-quality train
|
41 |
+
train_shape = (8490, 512, 512)
|
42 |
+
B4X = np.memmap('train_B04.dat', dtype='int16', mode='r', shape=train_shape)
|
43 |
+
y = np.memmap('train_target.dat', dtype='int8', mode='r', shape=train_shape)
|
44 |
+
|
45 |
+
# Read high-quality val
|
46 |
+
val_shape = (535, 512, 512)
|
47 |
+
B4X = np.memmap('val_B04.dat', dtype='int16', mode='r', shape=val_shape)
|
48 |
+
y = np.memmap('val_target.dat', dtype='int8', mode='r', shape=val_shape)
|
49 |
+
|
50 |
+
|
51 |
+
# Read high-quality test
|
52 |
+
test_shape = (975, 512, 512)
|
53 |
+
B4X = np.memmap('test_B04.dat', dtype='int16', mode='r', shape=test_shape)
|
54 |
+
y = np.memmap('test_target.dat', dtype='int8', mode='r', shape=test_shape)
|
55 |
+
```
|
56 |
+
<br>
|
57 |
+
|
58 |
+
This work has been partially supported by the Spanish Ministry of Science and Innovation project
|
59 |
+
PID2019-109026RB-I00 (MINECO-ERDF) and the Austrian Space Applications Programme within the
|
60 |
+
**[SemantiX project](https://austria-in-space.at/en/projects/2019/semantix.php)**.
|