ee.Reducer.fixedHistogram
संग्रह की मदद से व्यवस्थित रहें
अपनी प्राथमिकताओं के आधार पर, कॉन्टेंट को सेव करें और कैटगरी में बांटें.
यह एक ऐसा रिड्यूसर बनाता है जो तय चौड़ाई वाले बिन की तय संख्या का इस्तेमाल करके, इनपुट का हिस्टोग्राम कंप्यूट करेगा. [min, max) रेंज से बाहर की वैल्यू को अनदेखा किया जाता है. आउटपुट, बकेट के निचले किनारों और गिनती (या कुल गिनती) का Nx2 ऐरे होता है. इसका इस्तेमाल हर पिक्सल के लिए किया जा सकता है.
इस्तेमाल | रिटर्न |
---|
ee.Reducer.fixedHistogram(min, max, steps, cumulative) | रेड्यूसर |
आर्ग्यूमेंट | टाइप | विवरण |
---|
min | फ़्लोट | पहले बकेट की निचली सीमा (शामिल है). |
max | फ़्लोट | आखिरी बकेट की ऊपरी सीमा (शामिल नहीं है). |
steps | पूर्णांक | इस्तेमाल किए जाने वाले बकेट की संख्या. |
cumulative | बूलियन, डिफ़ॉल्ट वैल्यू: false | अगर यह विकल्प चुना जाता है, तो संचयी हिस्टोग्राम जनरेट होता है. |
जब तक कुछ अलग से न बताया जाए, तब तक इस पेज की सामग्री को Creative Commons Attribution 4.0 License के तहत और कोड के नमूनों को Apache 2.0 License के तहत लाइसेंस मिला है. ज़्यादा जानकारी के लिए, Google Developers साइट नीतियां देखें. Oracle और/या इससे जुड़ी हुई कंपनियों का, Java एक रजिस्टर किया हुआ ट्रेडमार्क है.
आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया.
[null,null,["आखिरी बार 2025-07-26 (UTC) को अपडेट किया गया."],[[["\u003cp\u003eGenerates a histogram with a fixed number of bins within a specified range (min, max).\u003c/p\u003e\n"],["\u003cp\u003eIgnores values outside the defined range and is suitable for per-pixel operations.\u003c/p\u003e\n"],["\u003cp\u003eOutputs a Nx2 array containing bucket lower edges and counts (or cumulative counts).\u003c/p\u003e\n"],["\u003cp\u003eOffers flexibility to generate cumulative histograms using the 'cumulative' parameter.\u003c/p\u003e\n"],["\u003cp\u003eCan be easily applied per-pixel for detailed image analysis.\u003c/p\u003e\n"]]],[],null,["# ee.Reducer.fixedHistogram\n\nCreates a reducer that will compute a histogram of the inputs using a fixed number of fixed width bins. Values outside of the \\[min, max) range are ignored. The output is a Nx2 array of bucket lower edges and counts (or cumulative counts) and is suitable for use per-pixel.\n\n\u003cbr /\u003e\n\n| Usage | Returns |\n|--------------------------------------------------------------|---------|\n| `ee.Reducer.fixedHistogram(min, max, steps, `*cumulative*`)` | Reducer |\n\n| Argument | Type | Details |\n|--------------|-------------------------|--------------------------------------------------|\n| `min` | Float | The lower (inclusive) bound of the first bucket. |\n| `max` | Float | The upper (exclusive) bound of the last bucket. |\n| `steps` | Integer | The number of buckets to use. |\n| `cumulative` | Boolean, default: false | When true, generates a cumulative histogram. |"]]