External functions (with a GUI)

조회 수: 17 (최근 30일)
Jakob Sørensen
Jakob Sørensen 2012년 2월 20일
편집: Febrian Dhimas Syahfitra 2018년 2월 5일
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

채택된 답변

Chandra Kurniawan
Chandra Kurniawan 2012년 2월 20일
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

추가 답변 (2개)

Jakob Sørensen
Jakob Sørensen 2012년 2월 21일
Got it to work, thanks to everyone contributing. To sum up (if anyone else has the same problem), what i needed was to use the "handle" variable when calling the external function. Like this:
output = functionName(input1, input2, ..., handle)
Otherwise you obviously can't use the "handle" in the external function. Once again, thanks.
  댓글 수: 2
Akmel
Akmel 2014년 12월 30일
Thank you Jakob Sorensen. That was what I was looking for exactly.

댓글을 달려면 로그인하십시오.


Walter Roberson
Walter Roberson 2012년 2월 20일
  댓글 수: 1
Jakob Sørensen
Jakob Sørensen 2012년 2월 20일
I might be stupid here (in fact I probably am), but how do I use that info to get the handle data out to a function in a seperate m-mile?
I want to call it like this:
plotImage('imageName');
instead of having a code like this in the main m-file:
axes(handles.axes1);
imagesc(imageName);
set(handles.axes1,'blablabla'...)

댓글을 달려면 로그인하십시오.

Community Treasure Hunt

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

Start Hunting!

Translated by