フィルターのクリア

multiple image in one GUI axes

3 ビュー (過去 30 日間)
Ahmad
Ahmad 2016 年 6 月 24 日
回答済み: Image Analyst 2016 年 6 月 26 日
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 日
So? You can still do that.

サインインしてコメントする。


Image Analyst
Image Analyst 2016 年 6 月 26 日

カテゴリ

Help Center および File ExchangeLine Plots についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by