How to calculate the mean of an image?

117 ビュー (過去 30 日間)
bh dhouha
bh dhouha 2015 年 2 月 16 日
コメント済み: Kweku Nkrumah 2018 年 6 月 15 日
How to calculate the mean of an image? Does the code mean2(img) give the right result?

採用された回答

Image Analyst
Image Analyst 2015 年 2 月 16 日
To calculate the mean of all pixels in the image, without regard to what color channel they came from (if it's a color image), you do
meanIntensity = mean(img(:));
What you did will not do it, as I'm sure you found out.
  2 件のコメント
bh dhouha
bh dhouha 2015 年 2 月 16 日
編集済み: bh dhouha 2015 年 2 月 16 日
Thank you very much :) just a little thing : i used mean(mean(img1(:,:,1)))and it gave me the same result as mean(img1(:)).The first code is focused on the red channel only i think-as you answered me in another question- so how could it be the same result?
Image Analyst
Image Analyst 2015 年 2 月 16 日
It could be the same if the image was gray since the blue and green channel would be identical to the red channel. It would also be the same for lots of other cases, like where the green and blue channels are scrambled (spatially rearranged) versions of the red channel since they would have the same pixel values regardless of how they're rearranged.

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

その他の回答 (1 件)

Rashmi.D Jeya kumar
Rashmi.D Jeya kumar 2018 年 1 月 8 日
meanval = mean2(I) you can get mean value of an image
  3 件のコメント
Image Analyst
Image Analyst 2018 年 6 月 13 日
Why does that mean anything is wrong? Maybe you took a bunch of photos through a microscope and they all have the same mean brightness (or really close to each other). Doesn't seem inherently unusual to me. Why do you think it indicates something is wrong?
Kweku Nkrumah
Kweku Nkrumah 2018 年 6 月 15 日
Ok. I get it now. Thank you.

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

カテゴリ

Help Center および File ExchangeImage Processing and Computer Vision についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by