ঘোষণা :
15 এপ্রিল, 2025 এর আগে আর্থ ইঞ্জিন ব্যবহার করার জন্য নিবন্ধিত সমস্ত অবাণিজ্যিক প্রকল্পগুলিকে অবশ্যই আর্থ ইঞ্জিন অ্যাক্সেস বজায় রাখার জন্য
অ-বাণিজ্যিক যোগ্যতা যাচাই করতে হবে।
ee.Reducer.fixedHistogram
সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
একটি রিডুসার তৈরি করে যা একটি নির্দিষ্ট সংখ্যক নির্দিষ্ট প্রস্থের বিন ব্যবহার করে ইনপুটগুলির একটি হিস্টোগ্রাম গণনা করবে। [মিনিট, সর্বোচ্চ) সীমার বাইরের মানগুলি উপেক্ষা করা হয়৷ আউটপুট হল একটি Nx2 অ্যারে বালতি নীচের প্রান্ত এবং গণনা (বা ক্রমবর্ধমান গণনা) এবং প্রতি-পিক্সেল ব্যবহারের জন্য উপযুক্ত।
ব্যবহার | রিটার্নস | ee.Reducer.fixedHistogram(min, max, steps, cumulative ) | হ্রাসকারী |
যুক্তি | টাইপ | বিস্তারিত | min | ভাসা | প্রথম বালতির নিম্ন (অন্তর্ভুক্ত) আবদ্ধ। |
max | ভাসা | শেষ বালতির উপরের (একচেটিয়া) আবদ্ধ। |
steps | পূর্ণসংখ্যা | ব্যবহার করার জন্য বালতি সংখ্যা। |
cumulative | বুলিয়ান, ডিফল্ট: মিথ্যা | সত্য হলে, একটি ক্রমবর্ধমান হিস্টোগ্রাম তৈরি করে। |
অন্য কিছু উল্লেখ না করা থাকলে, এই পৃষ্ঠার কন্টেন্ট Creative Commons Attribution 4.0 License-এর অধীনে এবং কোডের নমুনাগুলি Apache 2.0 License-এর অধীনে লাইসেন্স প্রাপ্ত। আরও জানতে, Google Developers সাইট নীতি দেখুন। Java হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-24 UTC-তে শেষবার আপডেট করা হয়েছে।
[null,null,["2025-07-24 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. |"]]