Borrar filtros
Borrar filtros

how to find the brightness of an image?

55 visualizaciones (últimos 30 días)
Sivakumaran Chandrasekaran
Sivakumaran Chandrasekaran el 23 de Sept. de 2012
Comentada: Image Analyst el 12 de Oct. de 2019
how to find the brightness of a particular part of an image? and how to find the brightness of an entire image?

Respuestas (2)

Walter Roberson
Walter Roberson el 23 de Sept. de 2012
If brightness is luminance, rgb2gray() the portion of the image.

Image Analyst
Image Analyst el 23 de Sept. de 2012
How do you define brightness? Is it just the mean? How about
brightness = mean2(yourImage);
or
brightness = mean2(yourImage(row1:row2, col1:col2));
  2 comentarios
Shaun Roberts
Shaun Roberts el 11 de Oct. de 2019
Hi Image Analyst,
I am looking to expand the features so I can run an analysis of low level features to see if they can be used for video recommendation.
The first one I have been looking at is Brightness mean would it be possible to work this into your current example?
Image Analyst
Image Analyst el 12 de Oct. de 2019
The program does compute the brightness of the gray scale version as well as each of the color channels. You can find this code in there:
% Calculate the mean gray level.
grayImage = rgb2gray(thisFrame);
meanGrayLevels(frame) = mean(grayImage(:));
% Calculate the mean R, G, and B levels.
meanRedLevels(frame) = mean(mean(thisFrame(:, :, 1)));
meanGreenLevels(frame) = mean(mean(thisFrame(:, :, 2)));
meanBlueLevels(frame) = mean(mean(thisFrame(:, :, 3)));

Iniciar sesión para comentar.

Categorías

Más información sobre Image Segmentation and Analysis en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by