External functions (with a GUI)

15 visualizaciones (últimos 30 días)
Jakob Sørensen
Jakob Sørensen el 20 de Feb. de 2012
Editada: Febrian Dhimas Syahfitra el 5 de Feb. de 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

Respuesta aceptada

Chandra Kurniawan
Chandra Kurniawan el 20 de Feb. de 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

Más respuestas (2)

Jakob Sørensen
Jakob Sørensen el 21 de Feb. de 2012
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 comentarios
Akmel
Akmel el 30 de Dic. de 2014
Thank you Jakob Sorensen. That was what I was looking for exactly.

Iniciar sesión para comentar.


Walter Roberson
Walter Roberson el 20 de Feb. de 2012
  1 comentario
Jakob Sørensen
Jakob Sørensen el 20 de Feb. de 2012
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'...)

Iniciar sesión para comentar.

Community Treasure Hunt

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

Start Hunting!

Translated by