Borrar filtros
Borrar filtros

how i can use the value of a in other function?

1 visualización (últimos 30 días)
sana saleeme
sana saleeme el 1 de Mayo de 2016
Comentada: sana saleeme el 2 de Mayo de 2016
how i can use the value of a in other function? and my code is here.
function pushbutton1_Callback(hObject, eventdata, handles)
[a , b] = uigetfile({'*.*' , 'all files'});
imread(a);
imshow(a);
% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
v = imread(a);
bw = im2bw(a);
  1 comentario
sana saleeme
sana saleeme el 1 de Mayo de 2016
i did it by using global.but now no function apply on a like im2bw and rgb2gray not working on it.please guide me what should a i do?

Iniciar sesión para comentar.

Respuesta aceptada

Jan
Jan el 1 de Mayo de 2016
function pushbutton1_Callback(hObject, eventdata, handles)
[a , b] = uigetfile({'*.*' , 'all files'});
imread(a);
imshow(a);
handles.a = a;
guidata(hObject, handles);
% --- Executes on button press in pushbutton2.
function pushbutton2_Callback(hObject, eventdata, handles)
handles = guidata(hObject);
v = imread(handles.a);
bw = im2bw(handles.a);
Note: Better use absolute file names with path:
a = fullfile(b, a);

Más respuestas (1)

Image Analyst
Image Analyst el 1 de Mayo de 2016

Categorías

Más información sobre 3-D Volumetric Image Processing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by