How to take sum of grey value of an image
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I want to calculate sum of grey value of an image. I have enclosed a image . So kindly provide MATLAB code
0 Commenti
Risposte (1)
Rik
il 15 Mar 2018
Modificato: Rik
il 15 Mar 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 Commento
Guillaume
il 15 Mar 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).
Vedere anche
Categorie
Scopri di più su Convert Image Type in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!