ee.Classifier.spectralRegion
با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
طبقهبندیکنندهای ایجاد میکند که بررسی میکند آیا ورودیهای آن در یک چند ضلعی است که توسط مجموعهای از مختصات در یک سیستم مختصات دوبعدی دلخواه تعریف شده است یا خیر. هر ورودی برای طبقه بندی باید 2 مقدار داشته باشد (مثلاً تصاویر باید 2 باند داشته باشند). هر جا که مقادیر ورودی در چند ضلعی داده شده باشد، نتیجه 1 و در غیر این صورت 0 خواهد بود.
استفاده | برمی گرداند | ee.Classifier.spectralRegion(coordinates, schema ) | طبقه بندی کننده |
استدلال | تایپ کنید | جزئیات | coordinates | فهرست کنید | مختصات چند ضلعی، به عنوان لیستی از حلقه ها. هر حلقه فهرستی از جفت مختصات است (به عنوان مثال، [u1، v1، u2، v2، ...، uN، vN]). هیچ لبه ای نباید لبه دیگری را قطع کند. هر جا مقادیر ورودی در داخل چند ضلعی باشد، طبقهبندی بهدستآمده 1 خواهد بود، یعنی برای خارج شدن از چندضلعی باید تعداد فرد یالهای چند ضلعی را تلاقی کرد و در غیر این صورت 0. |
schema | لیست، پیش فرض: null | طرح واره طبقه بندی کننده. فهرستی از نامهای باند یا دارایی که طبقهبندیکننده روی آنها عمل میکند. از آنجایی که این طبقهبندیکننده مراحل آموزشی را طی نمیکند، باید به صورت دستی مشخص شوند. پیشفرض ['u'، 'v'] است. |
جز در مواردی که غیر از این ذکر شده باشد،محتوای این صفحه تحت مجوز Creative Commons Attribution 4.0 License است. نمونه کدها نیز دارای مجوز Apache 2.0 License است. برای اطلاع از جزئیات، به خطمشیهای سایت Google Developers مراجعه کنید. جاوا علامت تجاری ثبتشده Oracle و/یا شرکتهای وابسته به آن است.
تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی.
[null,null,["تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی."],[[["\u003cp\u003eCreates a classifier to determine if input data points, represented by two values, fall within a defined polygon.\u003c/p\u003e\n"],["\u003cp\u003eThe classifier uses a polygon defined by a set of coordinates in a 2D coordinate system.\u003c/p\u003e\n"],["\u003cp\u003eInput data, such as images with two bands, is classified as 1 if inside the polygon and 0 if outside.\u003c/p\u003e\n"],["\u003cp\u003eUsers can specify the polygon coordinates and optionally define a schema for the classifier's input bands or properties.\u003c/p\u003e\n"]]],[],null,["# ee.Classifier.spectralRegion\n\nCreates a classifier that tests if its inputs lie within a polygon defined by a set of coordinates in an arbitrary 2D coordinate system. Each input to be classified must have 2 values (e.g., images must have 2 bands). The result will be 1 wherever the input values are contained within the given polygon and 0 otherwise.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|---------------------------------------------------------|------------|\n| `ee.Classifier.spectralRegion(coordinates, `*schema*`)` | Classifier |\n\n| Argument | Type | Details |\n|---------------|---------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|\n| `coordinates` | List | The coordinates of the polygon, as a list of rings. Each ring is a list of coordinate pairs (e.g., \\[u1, v1, u2, v2, ..., uN, vN\\]). No edge may intersect any other edge. The resulting classification will be a 1 wherever the input values are within the interior of the given polygon, that is, an odd number of polygon edges must be crossed to get outside the polygon and 0 otherwise. |\n| `schema` | List, default: null | The classifier's schema. A list of band or property names that the classifier will operate on. Since this classifier doesn't undergo a training step, these have to be specified manually. Defaults to \\['u', 'v'\\]. |"]]