Effacer les filtres
Effacer les filtres

How to show an updating image generated by "drawnow" in GUI axes1

3 vues (au cours des 30 derniers jours)
Wenlong
Wenlong le 29 Mai 2014
Commenté : Image Analyst le 30 Mai 2014
Hi All, I would like to show an updating image generated by "drawnow" in GUI axes1. This is my code:
function Start_Callback(hObject, eventdata, handles)
set(handles.Start,'string','Running','enable','off');
QuasiBrownianMotion_Co_TimeControl_forGUI;
axes(handles.axes1);
drawnow;
% Update handles structure
guidata(hObject, handles);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
"QuasiBrownianMotion_Co_TimeControl_forGUI" is a function I used to generate images.
The problem right now is whenever I run GUI and hit start button. Matlab always pop out another new image window to show the images instead of showing within axes1. Could anyone help me out? Thanks a lot! Wenlong
  7 commentaires
Geoff Hayes
Geoff Hayes le 29 Mai 2014
Modifié(e) : Geoff Hayes le 29 Mai 2014
Hi Wenlong - You can attach your *.m and *.fig files to any comment you add to your question. Just use the paperclip button to do so.
Wenlong
Wenlong le 30 Mai 2014
Sorry! I am a rookie. I will attach the files tomorrow morning since they are in my office computer. Thanks again!

Connectez-vous pour commenter.

Réponse acceptée

Image Analyst
Image Analyst le 29 Mai 2014
Search your code for "figure" - perhaps you're calling figure which is causing a brand new figure to be created instead of causing the image to appear in an axes control on your existing GUI figure.
  2 commentaires
Wenlong
Wenlong le 29 Mai 2014
Hi Thanks for your answer! The problem is that I am not be able to find a "figure" variable in the code. If there is a "figure" variable, I know we can handle it by using "imshow". If you can provide me an email box, I can send you my .m files. Thanks! Wenlong
Image Analyst
Image Analyst le 30 Mai 2014
I don't have an email address. You can attach m-files and fig files here with the paper clip icon. Or you can step through your code a line at a time to find out where the "pop out another new image window" happens exactly.

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Graphics Performance dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by