How do you deal the third dimension of a 3-d array to individual 2-d arrays?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Right now I have
m =imread(image);
red = im(:,:,1);
green = im(:,:,2);
blue = im(:,:,3);
How do I combine the red = ... green =, blue =... steps into one online?
1 comentario
Stephen23
el 6 de Mayo de 2018
"How do I combine the red = ... green =, blue =... steps into one online?"
Why do you want to do this? Your code now is simple, neat, and efficient: what is your aim?
Respuestas (1)
Ameer Hamza
el 5 de Mayo de 2018
Editada: Ameer Hamza
el 5 de Mayo de 2018
Here is a possible way to do that,
im = num2cell(imread(image), [1 2]);
[red, green, blue] = im{:};
0 comentarios
Ver también
Categorías
Más información sobre Data Types en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!