Filter löschen
Filter löschen

Grayscale of RGB channels

2 Ansichten (letzte 30 Tage)
SNEHA P S
SNEHA P S am 13 Jul. 2017
Bearbeitet: Jan am 18 Jul. 2017
Is it possible to convert the matrix values of R, G and B channels to its own grayscale values respectively?
  3 Kommentare
SNEHA P S
SNEHA P S am 18 Jul. 2017
Am not sure that whether the R G and B matrices itself display grayscales ?
Adam
Adam am 18 Jul. 2017
Each of the R, G and B channels can already be considered greyscale by itself. Whether it is useful to do so or not is another matter, but you haven't given any information so it's impossible to say.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Jan
Jan am 18 Jul. 2017
Bearbeitet: Jan am 18 Jul. 2017
RGB = rand(100, 100, 3); % RGB array
R = RGB(:, :, 1); % Gray image of the red channel
G = RGB(:, :, 2); % Gray image of the green channel
B = RGB(:, :, 3); % Gray image of the blue channel
figure
image(R)
figure
image(cat(3, R, R, R))

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with Image Processing Toolbox finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by