how to find a intensity of the color image?

2 visualizaciones (últimos 30 días)
Packia Naveen
Packia Naveen el 15 de Jun. de 2015
Editada: Image Analyst el 18 de Jun. de 2015
i need to find the mean intensity value of the colour image. i dont know how to do it? pls help me
  2 comentarios
Henric Rydén
Henric Rydén el 15 de Jun. de 2015
The mean of the entire image? mean(A(:))
Image Analyst
Image Analyst el 18 de Jun. de 2015
Editada: Image Analyst el 18 de Jun. de 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?

Iniciar sesión para comentar.

Respuestas (1)

Walter Roberson
Walter Roberson el 15 de Jun. de 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!

Translated by