Filter löschen
Filter löschen

対象物のみからRGB値のヒストグラムの作成

15 Ansichten (letzte 30 Tage)
yoshiki
yoshiki am 28 Feb. 2024
Kommentiert: yoshiki am 29 Feb. 2024
以下の画像において、黒い部分の影響を排除し、コインのみからRGB値のヒストグラムを作成したいです。ご教授よろしくお願いいたします。

Akzeptierte Antwort

Atsushi Ueno
Atsushi Ueno am 28 Feb. 2024
img = imread("image.jpeg");
ind = all(img,3); % RGB方向にANDをとる(黒は0、黒以外は1)
R = img(:,:,1);
G = img(:,:,2);
B = img(:,:,3);
tiledlayout(3,1)
nexttile
histogram(R(ind))
nexttile
histogram(G(ind))
nexttile
histogram(B(ind))
  1 Kommentar
yoshiki
yoshiki am 29 Feb. 2024
ありがとうございました。

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!