Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
Can a function which works well for grayscale images be applied for RGB images also?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Can a function which works well for grayscale images be applied for RGB images also?
0 comentarios
Respuestas (1)
David Young
el 4 de Ag. de 2015
In general, yes. You can either apply it to each of the R, G and B planes in turn, and then recombine the results, or you may be able to generalise the function so that it is applicable to an image with vector-valued pixels. The details depend on the function, of course.
3 comentarios
Walter Roberson
el 4 de Ag. de 2015
tempImage = reshape(YourRGBImge, size(YourRGBImage,1), []);
now apply the encryption to tempImage. Afterwards you can reshape() the result to size(YourRGBImage)
David Young
el 4 de Ag. de 2015
Anushka - might have been a good idea to put that in the original question!
Walter - maybe your comment should be a separate answer?
I've changed the tags, by the way, as they were too general to help anyone identify the topic.
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!