إشعار: يجب
إثبات أهلية جميع المشاريع غير التجارية المسجّلة لاستخدام Earth Engine قبل
15 أبريل 2025 من أجل الحفاظ على إمكانية الوصول إلى Earth Engine.
ee.Image.focalMin
تنظيم صفحاتك في مجموعات
يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.
تطبِّق هذه الدالة فلتر reducer() مورفولوجيًا على كل نطاق من الصورة باستخدام نواة مُسمّاة أو مخصّصة.
الاستخدام | المرتجعات |
---|
Image.focalMin(radius, kernelType, units, iterations, kernel) | صورة |
الوسيطة | النوع | التفاصيل |
---|
هذا: image | صورة | الصورة التي سيتم تطبيق العمليات عليها. |
radius | العدد العائم، القيمة التلقائية: 1.5 | تمثّل هذه السمة نصف قطر النواة المطلوب استخدامه. |
kernelType | سلسلة، القيمة التلقائية: "circle" | نوع النواة المطلوب استخدامه. تشمل الخيارات: "دائرة" و"مربّع" و"تقاطع" و"زائد" و"مثمّن" و"معيّن". |
units | سلسلة، القيمة التلقائية: "بكسل" | في حال عدم تحديد نواة، يحدّد هذا الإعداد ما إذا كانت النواة بالمتر أو بالبكسل. |
iterations | عدد صحيح، القيمة التلقائية: 1 | عدد المرات التي سيتم فيها تطبيق النواة المحدّدة. |
kernel | النواة، القيمة التلقائية: null | نظام تشغيل مخصّص في حال استخدامها، يتم تجاهل kernelType وradius. |
إنّ محتوى هذه الصفحة مرخّص بموجب ترخيص Creative Commons Attribution 4.0 ما لم يُنصّ على خلاف ذلك، ونماذج الرموز مرخّصة بموجب ترخيص Apache 2.0. للاطّلاع على التفاصيل، يُرجى مراجعة سياسات موقع Google Developers. إنّ Java هي علامة تجارية مسجَّلة لشركة Oracle و/أو شركائها التابعين.
تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-07-26 (حسب التوقيت العالمي المتفَّق عليه)"],[[["\u003cp\u003eApplies a morphological reducer, \u003ccode\u003efocalMin()\u003c/code\u003e, to each band of an image.\u003c/p\u003e\n"],["\u003cp\u003eUses a kernel specified by type ('circle', 'square', etc.), radius, and units (pixels or meters) to define the neighborhood for reduction.\u003c/p\u003e\n"],["\u003cp\u003eAllows custom kernels to override default kernel settings for more specialized operations.\u003c/p\u003e\n"],["\u003cp\u003eOptionally, performs the reduction multiple times using the \u003ccode\u003eiterations\u003c/code\u003e parameter.\u003c/p\u003e\n"],["\u003cp\u003eReturns a new image with the filter applied.\u003c/p\u003e\n"]]],["The `focalMin()` function applies a morphological reducer filter to each image band. It utilizes either a predefined kernel type (circle, square, etc.) or a user-defined kernel. Key actions include specifying the kernel's radius, type, units (pixels or meters), and iterations. The function can also utilize a custom kernel, in which case the kernel type and radius are disregarded. The output is an image with the filter applied.\n"],null,["# ee.Image.focalMin\n\nApplies a morphological reducer() filter to each band of an image using a named or custom kernel.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------------------------------------------------------------|---------|\n| Image.focalMin`(`*radius* `, `*kernelType* `, `*units* `, `*iterations* `, `*kernel*`)` | Image |\n\n| Argument | Type | Details |\n|---------------|---------------------------|------------------------------------------------------------------------------------------------------------|\n| this: `image` | Image | The image to which to apply the operations. |\n| `radius` | Float, default: 1.5 | The radius of the kernel to use. |\n| `kernelType` | String, default: \"circle\" | The type of kernel to use. Options include: 'circle', 'square', 'cross', 'plus', 'octagon', and 'diamond'. |\n| `units` | String, default: \"pixels\" | If a kernel is not specified, this determines whether the kernel is in meters or pixels. |\n| `iterations` | Integer, default: 1 | The number of times to apply the given kernel. |\n| `kernel` | Kernel, default: null | A custom kernel. If used, kernelType and radius are ignored. |"]]