Operation on RGB Images
Mostrar comentarios más antiguos
I have applied the security algo on Grayscale images which were converted to Grayscale from RGB.Now if want to operation directly on RGB image How can I separate the R,G & B components & merge at the end.
Thanks
Respuesta aceptada
Más respuestas (1)
Sukuchha
el 1 de Feb. de 2012
read your image with imread and extract RGB with indexing.
I= imread('your_pic')
R = I(:,:,1);
G = I(:,:,2);
B= I(:,:,3);
Categorías
Más información sobre Convert Image Type en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!