suppose there are two buttons in a GUI and from first button i browsed an image and now i want to use that image in the callback function of second button for further processing on that image with second button.???
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ayushi
el 2 de Mayo de 2016
Comentada: Walter Roberson
el 17 de Mayo de 2016
how to use that please guide me because i am new to matlab
0 comentarios
Respuesta aceptada
Walter Roberson
el 2 de Mayo de 2016
2 comentarios
Walter Roberson
el 17 de Mayo de 2016
In the first part you need
handles.MyImage = MyImage;
In the second part, after
if isfield(handles,'MyImage')
you need
MyImage = handles.MyImage;
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Processing Toolbox 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!