Update README.md
Browse files
README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
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)
|
@@ -83,11 +83,11 @@ Ready to start using **[CloudSEN12](https://cloudsen12.github.io/)**?
|
|
83 |
|
84 |
<br>
|
85 |
|
86 |
-
**train shape: (
|
87 |
<br>
|
88 |
-
**val shape: (
|
89 |
<br>
|
90 |
-
**test shape: (
|
91 |
|
92 |
<br>
|
93 |
|
@@ -99,20 +99,20 @@ Ready to start using **[CloudSEN12](https://cloudsen12.github.io/)**?
|
|
99 |
import numpy as np
|
100 |
|
101 |
# Read high-quality train
|
102 |
-
train_shape = (
|
103 |
-
B4X = np.memmap('
|
104 |
-
y = np.memmap('
|
105 |
|
106 |
# Read high-quality val
|
107 |
-
val_shape = (
|
108 |
-
B4X = np.memmap('
|
109 |
-
y = np.memmap('
|
110 |
|
111 |
|
112 |
# Read high-quality test
|
113 |
-
test_shape = (
|
114 |
-
B4X = np.memmap('
|
115 |
-
y = np.memmap('
|
116 |
```
|
117 |
<br>
|
118 |
|
|
|
2 |
license: cc-by-nc-4.0
|
3 |
---
|
4 |
|
5 |
+
# **CloudSEN12 SCRIBBLE**
|
6 |
## **A Benchmark Dataset for Cloud Semantic Understanding**
|
7 |
|
8 |
![CloudSEN12 Images](https://cloudsen12.github.io/thumbnails/cloudsen12.gif)
|
|
|
83 |
|
84 |
<br>
|
85 |
|
86 |
+
**train shape: (8785, 512, 512)**
|
87 |
<br>
|
88 |
+
**val shape: (560, 512, 512)**
|
89 |
<br>
|
90 |
+
**test shape: (655, 512, 512)**
|
91 |
|
92 |
<br>
|
93 |
|
|
|
99 |
import numpy as np
|
100 |
|
101 |
# Read high-quality train
|
102 |
+
train_shape = (8785, 512, 512)
|
103 |
+
B4X = np.memmap('train/L1C_B04.dat', dtype='int16', mode='r', shape=train_shape)
|
104 |
+
y = np.memmap('train/manual_hq.dat', dtype='int8', mode='r', shape=train_shape)
|
105 |
|
106 |
# Read high-quality val
|
107 |
+
val_shape = (560, 512, 512)
|
108 |
+
B4X = np.memmap('val/L1C_B04.dat', dtype='int16', mode='r', shape=val_shape)
|
109 |
+
y = np.memmap('val/manual_hq.dat', dtype='int8', mode='r', shape=val_shape)
|
110 |
|
111 |
|
112 |
# Read high-quality test
|
113 |
+
test_shape = (655, 512, 512)
|
114 |
+
B4X = np.memmap('test/L1C_B04.dat', dtype='int16', mode='r', shape=test_shape)
|
115 |
+
y = np.memmap('test/manual_hq.dat', dtype='int8', mode='r', shape=test_shape)
|
116 |
```
|
117 |
<br>
|
118 |
|