multiple image in one GUI axes

3 次查看(过去 30 天)
Ahmad
Ahmad 2016-6-24
Hello, I want to display multiple image in one axes in GUI in for loop. I have 9 image and i wand show them in one axes. I used this code but it doesnt work. can anyone help ? Thanks
k=1;
axes(handles.axes2)
for i=1:3
for j=1:3
subplot(3,3,k);
imshow(testimages(:,:,missimages(k)));
k=k+1;
end
end
  3 个评论
Geoff Hayes
Geoff Hayes 2016-6-25
Ahmad - the above code will create nine subplots within the figure. So there will be nine axes and not one. Please clarify exactly what you are trying to do.
Ahmad
Ahmad 2016-6-26
Geoff Hayes, You're right. That is exactly happened when i want to plot these 9 axes in a figure. But i am working on GUI and i want this whole figure (or 9 axes) appear in GUI.
i want these 9 axes shown in this GUI
by clicking 'Show 50 first failed predictions' button . What handle should i use? axes or uipanel or ???
And sorry for my poor English . Thanks

请先登录,再进行评论。

回答(2 个)

Image Analyst
Image Analyst 2016-6-26
Just save them to disk and use montage() to make a new image where all the others are stitched together. Or see the "Stitch" program: http://www.mathworks.com/matlabcentral/fileexchange/?term=authorid%3A58030
  2 个评论
Ahmad
Ahmad 2016-6-26
But i have to write some titles and description for them. anyway thanks for your help.

请先登录,再进行评论。


Image Analyst
Image Analyst 2016-6-26

类别

Help CenterFile Exchange 中查找有关 Line Plots 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by