ee.Image.random
Generates 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.
Usage | Returns |
---|
ee.Image.random(seed, distribution) | Image |
Argument | Type | Details |
---|
seed | Long, default: 0 | Seed for the random number generator. |
distribution | String, default: "uniform" | The distribution type of random numbers to produce. One of 'uniform' or 'normal'. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-19 UTC.
[null,null,["Last updated 2024-09-19 UTC."],[[["Generates random numbers at each pixel location of an image."],["Offers two distribution options: 'uniform' (range \\[0, 1)) and 'normal' (μ=0, σ=1)."],["Allows specification of a seed for reproducible results, defaulting to 0 if not provided."],["Returns an Earth Engine Image object containing the generated random numbers."]]],["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"]]