ee.Image.resample
An algorithm that returns an image identical to its argument, but which uses bilinear or bicubic interpolation (rather than the default nearest-neighbor) to compute pixels in projections other than its native projection or other levels of the same image pyramid.
This relies on the input image's default projection being meaningful, and so cannot be used on composites, for example. (Instead, you should resample the images that are used to create the composite.)
Usage | Returns |
---|
Image.resample(mode) | Image |
Argument | Type | Details |
---|
this: image | Image | The Image to resample. |
mode | String, default: "bilinear" | The interpolation mode to use. One of 'bilinear' or 'bicubic'. |
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."],[[["Resamples an image using bilinear or bicubic interpolation, resulting in an identical image but with different pixel computation for projections and pyramid levels."],["Relies on the input image's inherent projection and is unsuitable for composite images, which require individual component resampling."],["Offers 'bilinear' and 'bicubic' as interpolation modes, impacting how pixel values are calculated during resampling."],["The function `Image.resample()` takes the image and the desired interpolation mode as input and returns the resampled image."]]],["The algorithm resamples an input image using either bilinear or bicubic interpolation, departing from the default nearest-neighbor method. This is applied when calculating pixels in projections outside the image's native projection or in different levels of the image pyramid. The input image must have a meaningful default projection; therefore, it cannot be used on composites. The function, `Image.resample(mode)`, accepts an `Image` and a `mode` string (\"bilinear\" or \"bicubic\") as arguments, and returns a resampled `Image`.\n"]]