to Display multiple image frames without using montage
2 views (last 30 days)
Show older comments
Accepted Answer
KALYAN ACHARJYA
on 6 May 2018
Edited: KALYAN ACHARJYA
on 6 May 2018
% You should try first, still unable to solve, then ask questions
% You can display as matrix elements, note on image sizes for virtically display case
%Following example, you can vary the number of images, note on sizes
k=imread('leaf2.jpg');
k1=imread('leaf.jpg');
result=[k;k1];
imshow(result);
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/188227/image.jpeg)
3 Comments
More Answers (0)
See Also
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!