ee.Reducer.histogram
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
สร้างตัวลดที่จะคำนวณฮิสโทแกรมของอินพุต
การใช้งาน | การคืนสินค้า |
---|
ee.Reducer.histogram(maxBuckets, minBucketWidth, maxRaw) | ตัวลดตำแหน่ง |
อาร์กิวเมนต์ | ประเภท | รายละเอียด |
---|
maxBuckets | จำนวนเต็ม ค่าเริ่มต้น: null | จำนวนที่เก็บข้อมูลสูงสุดที่จะใช้เมื่อสร้างฮิสโตแกรม โดยจะปัดขึ้นเป็นเลขยกกำลังของ 2 |
minBucketWidth | ลอย ค่าเริ่มต้น: null | ความกว้างของ Bucket ฮิสโทแกรมขั้นต่ำ หรือ null เพื่ออนุญาตให้ใช้กำลัง 2 ใดก็ได้ |
maxRaw | จำนวนเต็ม ค่าเริ่มต้น: null | จำนวนค่าที่จะสะสมก่อนสร้างฮิสโทแกรมเริ่มต้น |
เนื้อหาของหน้าเว็บนี้ได้รับอนุญาตภายใต้ใบอนุญาตที่ต้องระบุที่มาของครีเอทีฟคอมมอนส์ 4.0 และตัวอย่างโค้ดได้รับอนุญาตภายใต้ใบอนุญาต Apache 2.0 เว้นแต่จะระบุไว้เป็นอย่างอื่น โปรดดูรายละเอียดที่นโยบายเว็บไซต์ Google Developers Java เป็นเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-26 UTC
[null,null,["อัปเดตล่าสุด 2025-07-26 UTC"],[[["\u003cp\u003eThe \u003ccode\u003eee.Reducer.histogram()\u003c/code\u003e creates a reducer for computing a histogram of image values within regions.\u003c/p\u003e\n"],["\u003cp\u003eIt allows for customization through optional parameters like \u003ccode\u003emaxBuckets\u003c/code\u003e, \u003ccode\u003eminBucketWidth\u003c/code\u003e, and \u003ccode\u003emaxRaw\u003c/code\u003e to manage the histogram's structure and initial accumulation.\u003c/p\u003e\n"],["\u003cp\u003eUsers can define the maximum number of buckets, set the minimum width for each bucket, and control the initial data accumulation for building the histogram.\u003c/p\u003e\n"]]],[],null,["# ee.Reducer.histogram\n\nCreate a reducer that will compute a histogram of the inputs.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------------------------------------------------------|---------|\n| `ee.Reducer.histogram(`*maxBuckets* `, `*minBucketWidth* `, `*maxRaw*`)` | Reducer |\n\n| Argument | Type | Details |\n|------------------|------------------------|-----------------------------------------------------------------------------------------------------|\n| `maxBuckets` | Integer, default: null | The maximum number of buckets to use when building a histogram; will be rounded up to a power of 2. |\n| `minBucketWidth` | Float, default: null | The minimum histogram bucket width, or null to allow any power of 2. |\n| `maxRaw` | Integer, default: null | The number of values to accumulate before building the initial histogram. |"]]