ee.Reducer.histogram
Create a reducer that will compute a histogram of the inputs.
Usage | Returns |
---|
ee.Reducer.histogram(maxBuckets, minBucketWidth, maxRaw) | Reducer |
Argument | Type | Details |
---|
maxBuckets | Integer, default: null | The maximum number of buckets to use when building a histogram; will be rounded up to a power of 2. |
minBucketWidth | Float, default: null | The minimum histogram bucket width, or null to allow any power of 2. |
maxRaw | Integer, default: null | The number of values to accumulate before building the initial histogram. |
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 2023-10-06 UTC.
[null,null,["Last updated 2023-10-06 UTC."],[[["The `ee.Reducer.histogram()` creates a reducer for computing a histogram of image values within regions."],["It allows for customization through optional parameters like `maxBuckets`, `minBucketWidth`, and `maxRaw` to manage the histogram's structure and initial accumulation."],["Users can define the maximum number of buckets, set the minimum width for each bucket, and control the initial data accumulation for building the histogram."]]],[]]