Filter löschen
Filter löschen

How to obtain sum of RGB color values of a pixel?

2 Ansichten (letzte 30 Tage)
Anushka
Anushka am 27 Mai 2015
Kommentiert: John D'Errico am 27 Mai 2015
How to obtain sum of RGB color values of a pixel?
Without using I(:,:,1) ,I(:,:,2),I(:,:,3).
  1 Kommentar
Stephen23
Stephen23 am 27 Mai 2015
Bearbeitet: Stephen23 am 27 Mai 2015
It is important to note that the sum of the R, G, and B values is not the same as the grayscale! This is because each of the R, G, and B values contribute unequally to the luminance, so they cannot be simply summed to get the grayscale equivalent of a color pixel. If you want the grayscale value, then the easiest way is to use rgb2gray.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Titus Edelhofer
Titus Edelhofer am 27 Mai 2015
Hi,
something like
sum(I, 3)
?
Titus
  3 Kommentare
Titus Edelhofer
Titus Edelhofer am 27 Mai 2015
Hi,
what do you mean b "not properly". Was there an error? Result not as expected (see comment by Stephen on grayscale)?
Titus
John D'Errico
John D'Errico am 27 Mai 2015
Probably the image is uint8, so summing the pixels will overflow. Better might be
sum(double(I),3)

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by