combining two images together
2 views (last 30 days)
Show older comments
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
0 Comments
Answers (3)
Sean de Wolski
on 6 Jul 2011
Side by side or superimposed?
I = double(imread('cameraman.tif'));
figure; imshow(I+I.',[]) %superimposed
figure; imshow([I I.']); %side by side
0 Comments
Ganesh
on 7 Jul 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 Comment
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!