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 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
ayushi
am 2 Mai 2016
Kommentiert: Walter Roberson
am 17 Mai 2016
how to use that please guide me because i am new to matlab
0 Kommentare
Akzeptierte Antwort
Walter Roberson
am 2 Mai 2016
2 Kommentare
Walter Roberson
am 17 Mai 2016
In the first part you need
handles.MyImage = MyImage;
In the second part, after
if isfield(handles,'MyImage')
you need
MyImage = handles.MyImage;
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Processing Toolbox finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!