公告:所有在
2025 年 4 月 15 日之前注册使用 Earth Engine 的非商业项目都必须
验证是否符合非商业性质的资格条件,才能继续使用 Earth Engine。
ee.Image.resample
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
一种算法,可返回与其实参相同的图片,但使用双线性或双三次插值(而非默认的最近邻)来计算非其原生投影或其他相同图片金字塔级别的投影中的像素。
这依赖于输入图片的默认投影是否具有意义,因此不能用于合成图片等。(您应改为对用于创建合成图片的图片进行重采样。)
用法 | 返回 |
---|
Image.resample(mode) | 图片 |
参数 | 类型 | 详细信息 |
---|
此:image | 图片 | 要重新采样的图片。 |
mode | 字符串,默认值:“双线性” | 要使用的插值模式。“双线性”或“双三次”。 |
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-26。
[null,null,["最后更新时间 (UTC):2025-07-26。"],[[["\u003cp\u003eResamples an image using bilinear or bicubic interpolation, resulting in an identical image but with different pixel computation for projections and pyramid levels.\u003c/p\u003e\n"],["\u003cp\u003eRelies on the input image's inherent projection and is unsuitable for composite images, which require individual component resampling.\u003c/p\u003e\n"],["\u003cp\u003eOffers 'bilinear' and 'bicubic' as interpolation modes, impacting how pixel values are calculated during resampling.\u003c/p\u003e\n"],["\u003cp\u003eThe function \u003ccode\u003eImage.resample()\u003c/code\u003e takes the image and the desired interpolation mode as input and returns the resampled image.\u003c/p\u003e\n"]]],["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"],null,["# ee.Image.resample\n\nAn 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.\n\n\u003cbr /\u003e\n\nThis 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.)\n\n| Usage | Returns |\n|----------------------------|---------|\n| Image.resample`(`*mode*`)` | Image |\n\n| Argument | Type | Details |\n|---------------|-----------------------------|----------------------------------------------------------------|\n| this: `image` | Image | The Image to resample. |\n| `mode` | String, default: \"bilinear\" | The interpolation mode to use. One of 'bilinear' or 'bicubic'. |"]]