how to show multiple images in the same picture with the name of each image without using subplots?
2 次查看(过去 30 天)
显示 更早的评论
dear all ,
I have a function that, according to the user's specifications, creates, reads the desired image created (saving it in a variable) and then deletes it (to avoid clogging the folder) after creating all the desired images I want the function to be output let me see the printed images and respective name associated with the image, I tried to use subplots but the images are too small and not seen well, montage, I do not know how to match the name - image because before doing montage you have to check which images exist or less than possible images. thanks
2 个评论
Jan
2018-8-9
What is the problem with using subplot? The size of the images shown by subplot is limited by the size of the monitor. So how can we help you? What does "match the names" mean?
采纳的回答
Image Analyst
2018-8-9
Use montage(), then text().
2 个评论
Image Analyst
2018-8-9
It should work fine if you just don't delete the very things you want to display! Not sure what gave you that idea. It works fine for me. Here is my code:
img = imread('peppers.png'); % Read in one image.
% Make cell array of 13 images (all the same for this demo).
cellImages = {img, img, img, img, img, img, img, img, img, img, img, img, img};
% Show all the image.
montage(cellImages, 'Size', [4 4])
更多回答(1 个)
Jan
2018-8-10
There are a lot of tools in the FileExchange, which provide a modified subplot to use more space in the figure.
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Line Plots 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!