ee.Image.rsedTransform
با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
فاصله اقلیدسی مربع معکوس (RSED) سطح حداکثر ارتفاع دوبعدی ایجاد شده با قرار دادن یک سهمی معکوس بر روی هر پیکسل غیر صفر تصویر ورودی را محاسبه می کند، جایی که مقدار پیکسل ارتفاع سهمی است. به عنوان یک تصویر باینری (صفر/نه صفر) این معادل بافر کردن هر پیکسل ورودی غیرصفر با جذر مقدار آن بر حسب پیکسل است.
استفاده | برمی گرداند | Image. rsedTransform ( neighborhood , units ) | تصویر |
استدلال | تایپ کنید | جزئیات | این: image | تصویر | تصویر ورودی |
neighborhood | عدد صحیح، پیش فرض: 256 | اندازه همسایگی بر حسب پیکسل |
units | رشته، پیش فرض: "pixels" | واحدهای محله، در حال حاضر فقط «پیکسل» پشتیبانی می شوند. |
،فاصله اقلیدسی مربع معکوس (RSED) سطح حداکثر ارتفاع دوبعدی ایجاد شده با قرار دادن یک سهمی معکوس بر روی هر پیکسل غیر صفر تصویر ورودی را محاسبه می کند، جایی که مقدار پیکسل ارتفاع سهمی است. به عنوان یک تصویر باینری (صفر/نه صفر) این معادل بافر کردن هر پیکسل ورودی غیرصفر با جذر مقدار آن بر حسب پیکسل است.
استفاده | برمی گرداند | Image. rsedTransform ( neighborhood , units ) | تصویر |
استدلال | تایپ کنید | جزئیات | این: image | تصویر | تصویر ورودی |
neighborhood | عدد صحیح، پیش فرض: 256 | اندازه همسایگی بر حسب پیکسل |
units | رشته، پیش فرض: "pixels" | واحدهای محله، در حال حاضر فقط «پیکسل» پشتیبانی می شوند. |
جز در مواردی که غیر از این ذکر شده باشد،محتوای این صفحه تحت مجوز Creative Commons Attribution 4.0 License است. نمونه کدها نیز دارای مجوز Apache 2.0 License است. برای اطلاع از جزئیات، به خطمشیهای سایت Google Developers مراجعه کنید. جاوا علامت تجاری ثبتشده Oracle و/یا شرکتهای وابسته به آن است.
تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی.
[null,null,["تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی."],[[["\u003cp\u003eRSED generates a height map by placing inverted parabolas over each non-zero pixel in an image, with parabola height corresponding to pixel value.\u003c/p\u003e\n"],["\u003cp\u003eThis transformation effectively buffers non-zero pixels by the square root of their value, creating a smoothed, expanded representation of the original image.\u003c/p\u003e\n"],["\u003cp\u003eIt's implemented through the \u003ccode\u003ersedTransform\u003c/code\u003e method with adjustable neighborhood size, impacting the extent of buffering.\u003c/p\u003e\n"]]],["Reverse Squared Euclidean Distance (RSED) creates a 2D surface by placing inverted parabolas over non-zero pixels in an image, with pixel values determining parabola heights. It's analogous to buffering each non-zero pixel by the square root of its value. The `Image.rsedTransform` function takes an input image and computes the RSED transform. The function requires `neighborhood` size in pixels (default 256) and supports `\"pixels\"` as `units`. It returns the transformed `Image`.\n"],null,["# ee.Image.rsedTransform\n\nReverse Squared Euclidean Distance (RSED) computes the 2D maximal height surface created by placing an inverted parabola over each non-zero pixel of the input image, where the pixel's value is the height of the parabola. Viewed as a binary image (zero/not-zero) this is equivalent to buffering each non-zero input pixel by the square root of its value, in pixels.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|-----------------------------------------------------|---------|\n| Image.rsedTransform`(`*neighborhood* `, `*units*`)` | Image |\n\n| Argument | Type | Details |\n|----------------|---------------------------|-----------------------------------------------------------------------|\n| this: `image` | Image | The input image. |\n| `neighborhood` | Integer, default: 256 | Neighborhood size in pixels. |\n| `units` | String, default: \"pixels\" | The units of the neighborhood, currently only 'pixels' are supported. |"]]