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.
次のような灰色の画像の 3D-numpy 配列があります。
[[[120,120,120],[67,67,67]]...]
明らかに、私はすべての RG と B を同じにしています。なぜなら、それは灰色のイメージだからです。これは冗長です。次のような新しい 2D 配列を取得したい:
[[120,67]...]
これは、すべてのピクセルの配列 [x,x,x] を単に値 x にすることを意味します
どうやってやるの?
形状ndarrayが (M, N, 3) の場合、次のような (M, N) グレースケール画像を取得できます。
ndarray
>>> gray = img[:,:,0]