Announcement: All noncommercial projects registered to use Earth Engine before
April 15, 2025 must
verify noncommercial eligibility to maintain Earth Engine access.
ee.Algorithms.FMask.matchClouds
Stay organized with collections
Save and categorize content based on your preferences.
Runs the FMask cloud and shadow matching. Outputs a single band ('csm'), containing the computed cloud and shadow masks.
Usage | Returns | ee.Algorithms.FMask.matchClouds(input, cloud, shadow, btemp, sceneLow, sceneHigh, neighborhood) | Image |
Argument | Type | Details | input | Image | The scene for which to compute cloud and shadow masks. |
cloud | Image | Potential cloud mask image. Expected to contain 1s for cloudy pixels and masked pixels everywhere else. |
shadow | Image | Potential shadow mask image. Expected to contain 1s for shadow pixels and masked pixels everywhere else. |
btemp | Image | Brightness temperature image, in Celsius. |
sceneLow | Float | The 0.175 percentile brightness temperature of the scene. |
sceneHigh | Float | The 0.825 percentile brightness temperature of the scene. |
neighborhood | Integer, default: 50 | The neighborhood to pad around each tile. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-07-13 UTC.
[null,null,["Last updated 2024-07-13 UTC."],[[["\u003cp\u003eGenerates cloud and shadow masks for satellite imagery using the FMask algorithm.\u003c/p\u003e\n"],["\u003cp\u003eTakes an input image and potential cloud/shadow masks to identify these features.\u003c/p\u003e\n"],["\u003cp\u003eUtilizes brightness temperature and scene percentiles to refine mask accuracy.\u003c/p\u003e\n"],["\u003cp\u003eOutputs a single-band image ('csm') representing the combined cloud and shadow mask.\u003c/p\u003e\n"],["\u003cp\u003eAllows customization of neighborhood padding for tile processing.\u003c/p\u003e\n"]]],[],null,["# ee.Algorithms.FMask.matchClouds\n\nRuns the FMask cloud and shadow matching. Outputs a single band ('csm'), containing the computed cloud and shadow masks.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------------------------------------------------------------------------------------|---------|\n| `ee.Algorithms.FMask.matchClouds(input, cloud, shadow, btemp, sceneLow, sceneHigh, `*neighborhood*`)` | Image |\n\n| Argument | Type | Details |\n|----------------|----------------------|----------------------------------------------------------------------------------------------------------|\n| `input` | Image | The scene for which to compute cloud and shadow masks. |\n| `cloud` | Image | Potential cloud mask image. Expected to contain 1s for cloudy pixels and masked pixels everywhere else. |\n| `shadow` | Image | Potential shadow mask image. Expected to contain 1s for shadow pixels and masked pixels everywhere else. |\n| `btemp` | Image | Brightness temperature image, in Celsius. |\n| `sceneLow` | Float | The 0.175 percentile brightness temperature of the scene. |\n| `sceneHigh` | Float | The 0.825 percentile brightness temperature of the scene. |\n| `neighborhood` | Integer, default: 50 | The neighborhood to pad around each tile. |"]]