How to take sum of grey value of an image

4 visualizaciones (últimos 30 días)
Deva Narayanan
Deva Narayanan el 15 de Mzo. de 2018
Editada: Rik el 15 de Mzo. de 2018
I want to calculate sum of grey value of an image. I have enclosed a image . So kindly provide MATLAB code

Respuestas (1)

Rik
Rik el 15 de Mzo. de 2018
Editada: Rik el 15 de Mzo. de 2018
IM=imread('image.png');
%IM=mean(IM,3);%convert RGB to grey
IM=rgb2gray(IM);
sumval=sum(IM(:));
You forgot to attach the image. You should really consider a crash course Matlab, any half-decent tutorial will learn you how to do this.
  1 comentario
Guillaume
Guillaume el 15 de Mzo. de 2018
Note that while taking the unweighted mean of the red, green and blue channels is certainly a possible way of converting to grey, it is not the most conventional. Most grey conversions put more weight on the green channel ( rgb2gray uses the weights 0.299, 0.587 and 0.114 respectively).

Iniciar sesión para comentar.

Categorías

Más información sobre Convert Image Type en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by