ee.Image.spectralDilation
Computes the spectral/spatial dilation of an image by computing the spectral distance of each pixel under a structuring kernel from the centroid of all pixels under the kernel and taking the most distant result. See 'Spatial/spectral endmember extraction by multidimensional morphological operations.' IEEE transactions on geoscience and remote sensing 40.9 (2002): 2025-2041.
Usage | Returns |
---|
Image.spectralDilation(metric, kernel, useCentroid) | Image |
Argument | Type | Details |
---|
this: image | Image | The input image. |
metric | String, default: "sam" | The spectral distance metric to use. One of 'sam' (spectral angle mapper), 'sid' (spectral information divergence), 'sed' (squared Euclidean distance), or 'emd' (earth movers distance). |
kernel | Kernel, default: null | Connectedness kernel. Defaults to a square of radius 1 (8-way connected). |
useCentroid | Boolean, default: false | If true, distances are computed from the mean of all pixels under the kernel instead of the kernel's center pixel. |
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."],[[["Computes the spectral/spatial dilation of an image based on the spectral distance of pixels within a kernel."],["Uses a specified spectral distance metric (SAM, SID, SED, or EMD) to calculate distances."],["Offers options to define the kernel shape and whether to use the centroid or center pixel for distance calculations."],["Outputs an image representing the spectral dilation result."]]],[]]