How to find MeanIntensity of Image ??

1 view (last 30 days)
Dear all,
We can find mean intensity of an image as follows.
MeanOf_KthRegion= STATS2(k).MeanIntensity;
Now I want to find mean Intensity of an image. Can anyone suggest idea.
Thank you.

Accepted Answer

Image Analyst
Image Analyst on 15 Jun 2011
meanImageIntensity = mean2(imageArray);

More Answers (1)

Walter Roberson
Walter Roberson on 15 Jun 2011
mean(YourImage(:))

Community Treasure Hunt

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

Start Hunting!