Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこの配列を数字で埋めました:
Image<Gray, Byte> imgHue = channels[0];
100 から 105 の範囲にある配列内の数値の数量を取得する必要があります。
それを実装する方法はありますか?
someArray.Count(x => x >= 100 && x <= 105)
Image 値(2番目のパラメーター)のタイプによって異なります。値の場合は、次のIEnumerable<Byte>ように実行できます。
Image
IEnumerable<Byte>
var rangeofBytes = imgHue.Values.Count(b => b >= 100 && b <= 105)