Borrar filtros
Borrar filtros

Grayscale of RGB channels

2 visualizaciones (últimos 30 días)
SNEHA P S
SNEHA P S el 13 de Jul. de 2017
Editada: Jan el 18 de Jul. de 2017
Is it possible to convert the matrix values of R, G and B channels to its own grayscale values respectively?
  3 comentarios
SNEHA P S
SNEHA P S el 18 de Jul. de 2017
Am not sure that whether the R G and B matrices itself display grayscales ?
Adam
Adam el 18 de Jul. de 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.

Iniciar sesión para comentar.

Respuesta aceptada

Jan
Jan el 18 de Jul. de 2017
Editada: Jan el 18 de Jul. de 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))

Más respuestas (0)

Categorías

Más información sobre Get Started with Image Processing Toolbox 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