how to find a intensity of the color image?

2 views (last 30 days)
Packia Naveen
Packia Naveen on 15 Jun 2015
Edited: Image Analyst on 18 Jun 2015
i need to find the mean intensity value of the colour image. i dont know how to do it? pls help me
  2 Comments
Henric Rydén
Henric Rydén on 15 Jun 2015
The mean of the entire image? mean(A(:))
Image Analyst
Image Analyst on 18 Jun 2015
Edited: Image Analyst on 18 Jun 2015
What is your definition of intensity (there are multiple definitions)? The actual units of an image are kind of like energy, or more exactly (candela steradian second) in all SI base units - basically Lux * time * area.
Or better yet, what do you really need, and why do you think you need the mean intensity to achieve that?

Sign in to comment.

Answers (1)

Walter Roberson
Walter Roberson on 15 Jun 2015
intensities = rgb2gray(YourImage);
meanint = mean(intensities(:));

Community Treasure Hunt

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

Start Hunting!