How to calculate the mean of an image?
191 views (last 30 days)
Show older comments
bh dhouha
on 16 Feb 2015
Commented: Kweku Nkrumah
on 15 Jun 2018
How to calculate the mean of an image? Does the code mean2(img) give the right result?
0 Comments
Accepted Answer
Image Analyst
on 16 Feb 2015
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 Comments
Image Analyst
on 16 Feb 2015
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.
More Answers (1)
See Also
Categories
Find more on Call Python from MATLAB in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!