Datasets:

Size:
n<1K
ArXiv:
DOI:
License:
DarthReca commited on
Commit
f0b06b5
β€’
1 Parent(s): fb57c0e

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +19 -2
README.md CHANGED
@@ -31,17 +31,20 @@ The dataset is designed to do binary semantic segmentation of burned vs unburned
31
 
32
  ## Dataset Structure
33
 
 
 
34
  ### Dataset opening
35
 
36
- Dataset was compressed using `h5py` and BZip2 from `hdf5plugin`. **WARNING: `hdf5plugin` is necessary to extract data**
37
 
38
  ### Data Instances
39
 
40
  Each matrix has a shape of 5490x5490xC, where C is 12 for pre-fire and post-fire images, while it is 0 for binary masks.
 
41
 
42
  ### Data Fields
43
 
44
- In each HDF5 file, you can find post-fire, pre-fire images and binary masks. The file is structured in this way:
45
 
46
  ```bash
47
  β”œβ”€β”€ foldn
@@ -66,6 +69,20 @@ In each HDF5 file, you can find post-fire, pre-fire images and binary masks. The
66
 
67
  where `foldn` and `foldm` are fold names and `uidn` is a unique identifier for the wilfire.
68
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
69
  ### Data Splits
70
 
71
  There are 5 random splits whose names are: 0, 1, 2, 3 and 4.
 
31
 
32
  ## Dataset Structure
33
 
34
+ We opted to use HDF5 to grant better portability and lower file size than GeoTIFF.
35
+
36
  ### Dataset opening
37
 
38
+ Dataset was compressed using `h5py` and BZip2 from `hdf5plugin`. **WARNING: `hdf5plugin` is necessary to extract data**.
39
 
40
  ### Data Instances
41
 
42
  Each matrix has a shape of 5490x5490xC, where C is 12 for pre-fire and post-fire images, while it is 0 for binary masks.
43
+ Pre-patched version with matrices of size 512x512xC version are provided, too. In this case only mask with at least one positive pixel are present.
44
 
45
  ### Data Fields
46
 
47
+ In each standard HDF5 file, you can find post-fire, pre-fire images and binary masks. The file is structured in this way:
48
 
49
  ```bash
50
  β”œβ”€β”€ foldn
 
69
 
70
  where `foldn` and `foldm` are fold names and `uidn` is a unique identifier for the wilfire.
71
 
72
+ For the pre-patched version, the structure is:
73
+ ```bash
74
+ root
75
+ |
76
+ |-- uid0_x: {post_fire, pre_fire, mask}
77
+ |
78
+ |-- uid0_y: {post_fire, pre_fire, mask}
79
+ |
80
+ |-- uid1_x: {post_fire, mask}
81
+ |
82
+ ...
83
+ ```
84
+ the fold name is stored as attribute.
85
+
86
  ### Data Splits
87
 
88
  There are 5 random splits whose names are: 0, 1, 2, 3 and 4.