ee.Image.slice
با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
گروهی از باندهای پیوسته را از یک تصویر بر اساس موقعیت انتخاب می کند.
استفاده | برمی گرداند | Image. slice (start, end ) | تصویر |
استدلال | تایپ کنید | جزئیات | این: image | تصویر | تصویری که از آن باندها را انتخاب کنید. |
start | عدد صحیح | انتخاب را از کجا شروع کنیم اعداد منفی با شمارش معکوس از آخر انتخاب می شوند. |
end | عدد صحیح، پیش فرض: null | کجا باید انتخاب را پایان داد. در صورت حذف، همه باندها را از موقعیت شروع تا پایان انتخاب می کند. |
جز در مواردی که غیر از این ذکر شده باشد،محتوای این صفحه تحت مجوز Creative Commons Attribution 4.0 License است. نمونه کدها نیز دارای مجوز Apache 2.0 License است. برای اطلاع از جزئیات، به خطمشیهای سایت Google Developers مراجعه کنید. جاوا علامت تجاری ثبتشده Oracle و/یا شرکتهای وابسته به آن است.
تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی.
[null,null,["تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی."],[[["\u003cp\u003eSelects a contiguous range of bands from a given image based on their position.\u003c/p\u003e\n"],["\u003cp\u003eUses \u003ccode\u003estart\u003c/code\u003e and optional \u003ccode\u003eend\u003c/code\u003e parameters to define the range of bands to be selected, supporting negative indexing for selecting from the end.\u003c/p\u003e\n"],["\u003cp\u003eReturns a new Image object containing only the selected bands.\u003c/p\u003e\n"]]],["This document describes the `Image.slice` function, which extracts a subset of bands from an image. It takes two integer arguments: `start`, indicating the beginning band index (supporting negative indexing), and an optional `end` to specify the final band. If `end` is absent, it selects all bands from `start` to the end. The function returns a new `Image` object containing the selected contiguous bands.\n"],null,["# ee.Image.slice\n\nSelects a contiguous group of bands from an image by position.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-------------------------------|---------|\n| Image.slice`(start, `*end*`)` | Image |\n\n| Argument | Type | Details |\n|---------------|------------------------|-----------------------------------------------------------------------------------------------|\n| this: `image` | Image | The image from which to select bands. |\n| `start` | Integer | Where to start the selection. Negative numbers select from the end, counting backwards. |\n| `end` | Integer, default: null | Where to end the selection. If omitted, selects all bands from the start position to the end. |"]]