Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
======================
Cloud Masks
======================
| Sen2Chain offers multiple algorythms for cloud masking :
CloudMask 1
***********
Sen2Chain historical cloudmask method is mask CM001. This product is directly extracted from the cloud probability mask output of Sen2Cor, at 20m resolution.
This layer is a Quality indicator that calculates the probability (0-100%) that the earth surface is obstructed by clouds or optically thick aerosols like ice or snow.
Then, a binary image is generated by applying a threshold of cloud probability over 25%.
Then, two mathematical morphology operations are successively performed on the data: a binary erosion of a 3x3 pixel square kernel is followed by a binary dilatation of a 11x11 pixel rounded shape kernel.
This double operation, called opening, removes objects smaller than the structuring element, and can be used together with closing for noise removal.
CloudMask 2
***********
Sen2Chain second mask is CM002, an evolution of CM001 that allows in some specific cases to reduce false cloud detection linked to unusually high snow probabilities in the CLDPRB layer of Sen2Cor.
These high probability values can be found on high reflectance rivers or in beach areas (specular surface reflections, high turbidity, white sand beaches...)
The SWIR spectral band, centered around 1600nm and relatively insensitive to these anomalies, is used to get rid of these artefacts.
SWIR Band B11 is transformed in a mask in 2 steps : First a binary image is generated with a reflectance threshold of 15%, then a binary dilatation filter of a 11x11 pixel round kernel is applied.
Then, the newly computed cloudmask CM002 is applied on the CM001, followed by a dilatation on a round kernel of 13x13 pixels.
The cloudmask CM002 is less sensitive on the areas mentionned before, but also slightly more dilated than CM001, allowing for a better interpretation of clouds with ambiguous boundaries.
CloudMask 3
***********
Sen2Chain's third mask, CM003, is based on the same data source as CM001 (cloud probability layer MSK_CLDPRB at 20m spatial resolution), but adds 2 optional parameters :
- The cloud probability value for thresholding (0-100%)
- The number of iterations of the binary dilatation kernel (A 5x5 pixel rounded shape, without prior erosion like in CM001 case)
CloudMask 4
***********
| Sen2Chain 4th and latest cloud mask uses the Scene Classification (SC) with 20m spatial resolution band of Sen2Cor.
| The Sen2Cor algorithm used to produce the SC notably detects clouds and their shadows and generates a classification map, which consists of 3 different classes for clouds (including cirrus), as well as six different classifications for shadows, cloud shadows, vegetation, soils/deserts, water and snow.
| A total of 6 parameters can be specificed by the user, allowing for a better precision of the mask and specific use cases :
Like CM003,
- The cloud probability value for thresholding (0-100%)
- The number of iterations of the binary dilatation kernel (A 5x5 pixel rounded shape, without prior erosion)
And 4 Classes from the SC layer, used to generate the final mask :
- CLOUD_SHADOWS
- CLOUD_MEDIUM_PROBABILITY
- CLOUD_HIGH_PROBABILITY
- THIN_CIRRUS
To compute Cloud Masks from any L2A Product, call for compute_cloudmasks() Tile's method :
.. code-block:: python
from sen2chain import Tile
Tile('40KCB').compute_cloudmasks(cm_version="CM004", iterations=5, ...)