ee.Image.resample
با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
الگوریتمی که تصویری مشابه آرگومان خود را برمیگرداند، اما از درونیابی دوخطی یا دو مکعبی (به جای نزدیکترین همسایه پیشفرض) برای محاسبه پیکسلها در پیشبینیهایی غیر از طرحریزی اصلی آن یا سطوح دیگر هرم تصویر مشابه استفاده میکند.
این متکی به معنادار بودن پیشفرض تصویر ورودی است و بنابراین نمیتوان از آن برای مثال در ترکیبها استفاده کرد. (در عوض، باید تصاویری را که برای ایجاد کامپوزیت استفاده می شود، مجدداً نمونه برداری کنید.)
استفاده | برمی گرداند | Image. resample ( mode ) | تصویر |
استدلال | تایپ کنید | جزئیات | این: image | تصویر | تصویر برای نمونه گیری مجدد |
mode | رشته، پیش فرض: "دو خطی" | حالت درونیابی برای استفاده. یکی از دو خطی یا دو مکعبی. |
،الگوریتمی که تصویری مشابه آرگومان خود را برمیگرداند، اما از درونیابی دوخطی یا دو مکعبی (به جای نزدیکترین همسایه پیشفرض) برای محاسبه پیکسلها در پیشبینیهایی غیر از طرحریزی اصلی آن یا سطوح دیگر هرم تصویر مشابه استفاده میکند.
این متکی به معنادار بودن پیشفرض تصویر ورودی است و بنابراین نمیتوان از آن برای مثال در ترکیبها استفاده کرد. (در عوض، باید تصاویری را که برای ایجاد کامپوزیت استفاده می شود، مجدداً نمونه برداری کنید.)
استفاده | برمی گرداند | Image. resample ( mode ) | تصویر |
استدلال | تایپ کنید | جزئیات | این: image | تصویر | تصویر برای نمونه گیری مجدد |
mode | رشته، پیش فرض: "دو خطی" | حالت درونیابی برای استفاده. یکی از دو خطی یا دو مکعبی. |
جز در مواردی که غیر از این ذکر شده باشد،محتوای این صفحه تحت مجوز Creative Commons Attribution 4.0 License است. نمونه کدها نیز دارای مجوز Apache 2.0 License است. برای اطلاع از جزئیات، به خطمشیهای سایت Google Developers مراجعه کنید. جاوا علامت تجاری ثبتشده Oracle و/یا شرکتهای وابسته به آن است.
تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی.
[null,null,["تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی."],[[["\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'. |"]]