ee.Image.random
با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
در هر مکان پیکسل یک عدد تصادفی ایجاد می کند. هنگام استفاده از توزیع "یکنواخت"، خروجی ها در محدوده [0، 1) قرار دارند. با استفاده از توزیع «نرمال»، خروجی ها μ=0، σ=1 دارند، اما هیچ محدودیت صریحی ندارند.
استفاده | برمی گرداند | ee.Image.random( seed , distribution ) | تصویر |
استدلال | تایپ کنید | جزئیات | seed | طولانی، پیش فرض: 0 | بذر برای مولد اعداد تصادفی. |
distribution | رشته، پیش فرض: "یکنواخت" | نوع توزیع اعداد تصادفی برای تولید. یکی از "یکنواخت" یا "عادی". |
،در هر مکان پیکسل یک عدد تصادفی ایجاد می کند. هنگام استفاده از توزیع "یکنواخت"، خروجی ها در محدوده [0، 1) قرار دارند. با استفاده از توزیع «نرمال»، خروجی ها μ=0، σ=1 دارند، اما هیچ محدودیت صریحی ندارند.
استفاده | برمی گرداند | ee.Image.random( seed , distribution ) | تصویر |
استدلال | تایپ کنید | جزئیات | seed | طولانی، پیش فرض: 0 | بذر برای مولد اعداد تصادفی. |
distribution | رشته، پیش فرض: "یکنواخت" | نوع توزیع اعداد تصادفی برای تولید. یکی از "یکنواخت" یا "عادی". |
جز در مواردی که غیر از این ذکر شده باشد،محتوای این صفحه تحت مجوز Creative Commons Attribution 4.0 License است. نمونه کدها نیز دارای مجوز Apache 2.0 License است. برای اطلاع از جزئیات، به خطمشیهای سایت Google Developers مراجعه کنید. جاوا علامت تجاری ثبتشده Oracle و/یا شرکتهای وابسته به آن است.
تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی.
[null,null,["تاریخ آخرین بهروزرسانی 2025-07-24 بهوقت ساعت هماهنگ جهانی."],[[["\u003cp\u003eGenerates random numbers at each pixel location of an image.\u003c/p\u003e\n"],["\u003cp\u003eOffers two distribution options: 'uniform' (range [0, 1)) and 'normal' (μ=0, σ=1).\u003c/p\u003e\n"],["\u003cp\u003eAllows specification of a seed for reproducible results, defaulting to 0 if not provided.\u003c/p\u003e\n"],["\u003cp\u003eReturns an Earth Engine Image object containing the generated random numbers.\u003c/p\u003e\n"]]],["Produces an image of random numbers at each pixel. The `seed` argument, a long integer, controls the random number generator. The `distribution` argument, defaulting to \"uniform,\" can be either \"uniform\" (outputting values within [0, 1)) or \"normal\" (outputting values with μ=0, σ=1). The function `ee.Image.random()` returns an Image.\n"],null,["# ee.Image.random\n\nGenerates a random number at each pixel location. When using the 'uniform' distribution, outputs are in the range of \\[0, 1). Using the 'normal' distribution, the outputs have μ=0, σ=1, but no explicit limits.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|------------------------------------------------|---------|\n| `ee.Image.random(`*seed* `, `*distribution*`)` | Image |\n\n| Argument | Type | Details |\n|----------------|----------------------------|-----------------------------------------------------------------------------------|\n| `seed` | Long, default: 0 | Seed for the random number generator. |\n| `distribution` | String, default: \"uniform\" | The distribution type of random numbers to produce. One of 'uniform' or 'normal'. |"]]