対象物のみからRGB値のヒストグラムの作成
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
yoshiki
el 28 de Feb. de 2024
Comentada: yoshiki
el 29 de Feb. de 2024
以下の画像において、黒い部分の影響を排除し、コインのみからRGB値のヒストグラムを作成したいです。ご教授よろしくお願いいたします。
0 comentarios
Respuesta aceptada
Atsushi Ueno
el 28 de Feb. de 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))
Más respuestas (0)
Ver también
Categorías
Más información sobre ビッグ データの処理 en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!