External functions (with a GUI)
2 views (last 30 days)
Show older comments
Jakob Sørensen
on 20 Feb 2012
Edited: Febrian Dhimas Syahfitra
on 5 Feb 2018
Hey there.
I'm currently working on a GUI, that has to show images in 3 different axes. I have no problem handling it insides the main *.m file for the GUI, but if i try to put the plotting code in a file for itself, then I can't use "axes(handles.axes1)" because handles, apparently, only can be accessed from the main file. Is there anyway to cope with this? And preferably something somewhat refined, since this is for my bachelor degree.
Thanks in advance
0 Comments
Accepted Answer
Chandra Kurniawan
on 20 Feb 2012
Hi,
Maybe this will helps.
I have GUI as shown in picture below :
For button "GRAY" and "BINARY", I perform image convertion with external functions.
I also call 'imshow' from external functions.
Here code about the main interface :
function pushbutton1_Callback(hObject, eventdata, handles)
handles.I = imread('peppers.png');
axes(handles.axes1);
imshow(handles.I);
guidata(hObject, handles);
function pushbutton2_Callback(hObject, eventdata, handles)
handles.J = rgb_to_gray(handles.I,handles.axes2);
guidata(hObject, handles);
function pushbutton3_Callback(hObject, eventdata, handles)
handles.K = im_to_bw(handles.J,handles.axes3);
guidata(hObject, handles);
And here the external functions
Perform rgb2gray
function J = rgb_to_gray(I,handles)
J = rgb2gray(I);
axes(handles);
imshow(J);
Perform im2bw
function J = im_to_bw(I,handles)
J = im2bw(I);
axes(handles);
imshow(J);
I hope this will helps
0 Comments
More Answers (2)
Jakob Sørensen
on 21 Feb 2012
2 Comments
Febrian Dhimas Syahfitra
on 5 Feb 2018
Edited: Febrian Dhimas Syahfitra
on 5 Feb 2018
please guys, help me to answer this https://www.mathworks.com/matlabcentral/answers/380619-how-do-i-use-the-edit-text-box-in-a-gui-to-change-variables-in-a-function
See Also
Categories
Find more on Annotations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!