how to find a intensity of the color image?
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
i need to find the mean intensity value of the colour image. i dont know how to do it? pls help me
2 Kommentare
Image Analyst
am 18 Jun. 2015
Bearbeitet: Image Analyst
am 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?
Antworten (1)
Walter Roberson
am 15 Jun. 2015
intensities = rgb2gray(YourImage);
meanint = mean(intensities(:));
0 Kommentare
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!