Borrar filtros
Borrar filtros

combining two images together

1 visualización (últimos 30 días)
Oyewale Oyelami
Oyewale Oyelami el 6 de Jul. de 2011
i didnot know how to do this...i want to display an image vertically and the other horizontally....in the same figure...any way out..Thanks

Respuestas (3)

Sean de Wolski
Sean de Wolski el 6 de Jul. de 2011
Side by side or superimposed?
I = double(imread('cameraman.tif'));
figure; imshow(I+I.',[]) %superimposed
figure; imshow([I I.']); %side by side

Ganesh
Ganesh el 7 de Jul. de 2011
The above answer worked fine for superimposition. But, it gave a blank image for the side by side command. Maybe because here the size of the image becomes 256*512
  1 comentario
Sean de Wolski
Sean de Wolski el 7 de Jul. de 2011
Probably. Pad it with zeros if you have to...

Iniciar sesión para comentar.


Image Analyst
Image Analyst el 9 de Jul. de 2011
Fix for Sean's last line:
imshow([I I.'], []);

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by