how to draw histogram of an RGB image

23 ビュー (過去 30 日間)
Parveiz Lone
Parveiz Lone 2019 年 8 月 3 日
コメント済み: Parveiz Lone 2019 年 8 月 18 日
  1 件のコメント
Parveiz Lone
Parveiz Lone 2019 年 8 月 18 日
My histogram is like that not similar to above histo..is there any problem or it may be version difference i am using 2016 version

サインインしてコメントする。

採用された回答

KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 8 月 3 日
編集済み: KALYAN ACHARJYA 2019 年 8 月 3 日
image_test=imread('Baboon.jpeg');
red_plane=image_test(:,:,1);
green_plane=image_test(:,:,2);
blue_plane=image_test(:,:,3);
[red_data pixel_level]=imhist(red_plane);
[green_data pixel_level]=imhist(green_plane);
[blue_data pixel_level]=imhist(blue_plane);
bar(pixel_level, red_data,'r');
hold on;
bar(pixel_level, green_data,'g');
bar(pixel_level, blue_data,'b');
Note: You can plot all in single matlab line code.
pic11.png
  4 件のコメント
KALYAN ACHARJYA
KALYAN ACHARJYA 2019 年 8 月 4 日
I have answered, please check.
Parveiz Lone
Parveiz Lone 2019 年 8 月 4 日
That i have checked and that was perfect But now i need for second one ..scatter plot

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeHistograms についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by