how to find a intensity of the color image?
3 views (last 30 days)
Show older comments
i need to find the mean intensity value of the colour image. i dont know how to do it? pls help me
2 Comments
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?
Answers (1)
Walter Roberson
on 15 Jun 2015
intensities = rgb2gray(YourImage);
meanint = mean(intensities(:));
0 Comments
See Also
Categories
Find more on Image Processing Toolbox 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!