
montage of 3 image
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Respuesta aceptada
Matthew Eicholtz
el 6 de Oct. de 2016
An example:
I = imread('peppers.png');
R = I(:,:,1);
G = I(:,:,2);
B = I(:,:,3);
J = rgb2gray(I);
K = im2bw(I)*255;
img = cat(4,R,G,B,J,K);
figure;
montage(img,'Size',[1 5]);

2 comentarios
Matthew Eicholtz
el 6 de Oct. de 2016
I = imread('peppers.png');
N = 5;
J = [];
for ii=1:N
J = cat(4,J,I);
end
figure;
montage(J,'size',[1 N]);
Más respuestas (0)
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!