How do I change the image displayed in the axes of a gui?
4 ビュー (過去 30 日間)
古いコメントを表示
On the gui, I have push buttons and an axes. The first push button loads an image into the axes. The second is supposed to perform some function on the first image then display the resultant image to the same axes. But I dont understand how to change the image in the axes to the new one. How do I do this? Thank you.
0 件のコメント
回答 (3 件)
Jurgen
2013 年 5 月 9 日
Agree with Image Analyst, you can use the same command as with the first button to display. Alternatively changing the CData property of you image may be a faster alternative.
imh = imhandles(your_gui_handle); %gets your image handle if you dont know it
set(imh,'CData',NEWIMAGE);
0 件のコメント
David Sanchez
2013 年 5 月 9 日
Your problem has been explained before, I hope the link helps you out:
0 件のコメント
Image Analyst
2013 年 5 月 9 日
Just use image() or imshow(). As long as you have just one axes (as you seemed to indicate), it should display just fine. Use cla beforehand to clear out any old image, otherwise the images will "pile up" in the control.
cla;
axes(handles.axesImage); % Only needed if you have multiple axes.
imshow(yourImage);
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Convert Image Type についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!