ee.Image.random
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
สร้างตัวเลขสุ่มในตำแหน่งพิกเซลแต่ละตำแหน่ง เมื่อใช้การกระจาย "สม่ำเสมอ" เอาต์พุตจะอยู่ในช่วง [0, 1) เมื่อใช้การกระจาย "ปกติ" เอาต์พุตจะมี μ=0, σ=1 แต่ไม่มีขีดจำกัดที่ชัดเจน
การใช้งาน | การคืนสินค้า |
---|
ee.Image.random(seed, distribution) | รูปภาพ |
อาร์กิวเมนต์ | ประเภท | รายละเอียด |
---|
seed | ยาว ค่าเริ่มต้น: 0 | Seed สำหรับโปรแกรมสร้างตัวเลขสุ่ม |
distribution | สตริง ค่าเริ่มต้น: "uniform" | ประเภทการกระจายของตัวเลขสุ่มที่จะสร้าง โดยอาจเป็น "uniform" หรือ "normal" |
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-26 UTC
[null,null,["อัปเดตล่าสุด 2025-07-26 UTC"],[[["\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'. |"]]