I'm making a GUI and i have to show a image every second. I create a timer to do so in opening function from the GUI like this:
handles.tempo = timer;
handles.tempo.ExecutionMode = 'FixedSpacing';
handles.tempo.StartDelay = 5;
set(handles.tempo, 'TimerFcn', {@myphoto_Callback, handles})...
I've been creatting a GUI where i want to show a image(jpg) with an axes. This image has to be updated every second. I just created a timer and use its callback to do so. My problem is that the image doesn't show on the axes, in fact come another figure show it. How could i do to solve this...