How to take summation of different bins of histogram

1 回表示 (過去 30 日間)
anu
anu 2016 年 7 月 22 日
コメント済み: Image Analyst 2016 年 7 月 25 日
I am new to Matlab. I have created three separate arrays rarray,garray,barray to store RGB values of an image. After this I have created histogram for these three channels. How take addition of different bins for every channel?

採用された回答

Image Analyst
Image Analyst 2016 年 7 月 22 日
I don't know what you mean by "different" bins, but to add up corresponding bins, just add
redCounts = imhist(rgbImage(:,:,1));
greenCounts = imhist(rgbImage(:,:,2));
blueCounts = imhist(rgbImage(:,:,3));
overallCounts = redCounts + greenCounts + blueCounts ;
Of course it's even easier to do it all in one step:
overallCounts = imhist(rgbImage(:));
  4 件のコメント
anu
anu 2016 年 7 月 25 日
Thanks. But I tried for 10-11 images. I am getting different values for 256 bins. But when I take the summation of redCounts, greenCounts, blueCounts separately getting the same values for all three channels. I dont why I am getting same addition for all three channels even though I tested on 5-6 images.
Image Analyst
Image Analyst 2016 年 7 月 25 日
Neither can we, until we see your code and you upload at least two images.

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

その他の回答 (1 件)

Azzi Abdelmalek
Azzi Abdelmalek 2016 年 7 月 22 日
編集済み: Azzi Abdelmalek 2016 年 7 月 22 日
A=randi(10,5,4,3)
B=squeeze(sum(sum(A,1)))

カテゴリ

Help Center および File ExchangeImage Filtering and Enhancement についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by