How to update handles structure from a helper function in GUIDE ?
2 views (last 30 days)
Show older comments
I wrote an image browser using GUIDE (Matlab 2014a). Originally, one of the function callback looks like this, and it worked.
function btnLineProfileXY_Callback(hObject, eventdata, handles)
figure(4);hold off;
imshow(squeeze(handles.FRET(:,:,getappdata(handles.figure1,'Zind'),:)));
hold on;
handles.hL1 = line(getappdata(handles.figure1,'Xind')*[1 1],[1 handles.Ynum]);
handles.hL2 = line([1 handles.Xnum], getappdata(handles.figure1,'Yind'));
lineBtnDownFcn(handles);
guidata(hObject, handles);
But then because many other callbacks use the same codes, so I decided to write a helper function for these repetitive codes.
function btnLineProfileXY_Callback(hObject, eventdata, handles)
figure(4);hold off;
imshow(squeeze(handles.FRET(:,:,getappdata(handles.figure1,'Zind'),:)));
hold on;
lineRoutine(handles);
lineBtnDownFcn(handles);
guidata(hObject, handles);
function lineRoutine(handles) % Helper function
figure(4);hold off;
imshow(squeeze(handles.FRET(:,:,getappdata(handles.figure1,'Zind'),:)));
hold on;
handles.hL1 = line(getappdata(handles.figure1,'Xind')*[1 1],[1 handles.Ynum]);
handles.hL2 = line([1 handles.Xnum], getappdata(handles.figure1,'Yind'));
guidata(handles.figure1, handles);
When structured like this, it doesn't work anymore. The line object handles are not save to the handles structure. The function call was successful and there was no error message generated. But when I examine the handles structure after the function call, there was no handles.hL1 and handles.hL2. What did I do wrong?
0 Comments
Accepted Answer
Jan
on 23 May 2014
The debugger reveals the reasons for such problems. Set a breakpoint in the code and check, what's going on by stepping through the code line by line.
In lineRoutine the variable "handles" is modified and stored in the figure. The same happens in lineBtnDownFcn. But then the version of "handles" in the function btnLineProfileXY_Callback is stored finally, such that the modifications vanish.
Omit the guidata(hObject, handles) in btnLineProfileXY_Callback to avoid overwriting the changes.
1 Comment
Joe Yeh
on 24 May 2014
Edited: Joe Yeh
on 24 May 2014
Hi Jan, thanks for the answer. I tried again but it still didn't work. I tested what you said in a very simple GUI that had just an axes and a push button.
function pushbutton1_Callback(hObject, eventdata, handles)
drawline(handles);
handles.test = 2; % In the second test, a stop is placed at this line.
function drawline(handles)
handles.hL1 = line([0 200], [100 100]);
guidata(handles.figure1, handles);
test(handles);
function test(handles)
handles.test = 1; % In the first test, a stop was placed at this line
If the program is stop at 'handles.test=1', I see the handles.hL1. But if the program is stopped at 'handles.test=2', I can not see handles.hL1. Somehow the pushbutton1_Callback is holding on the the handles structure first passed on to it..?
Your solution will work if the helper function is called in the openingFcn of the GUI program. But if helper function is called from a callback, your solution didn't seem to work...
More Answers (1)
See Also
Categories
Find more on Environment and Settings in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!