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.???
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
ayushi
le 2 Mai 2016
Commenté : Walter Roberson
le 17 Mai 2016
how to use that please guide me because i am new to matlab
0 commentaires
Réponse acceptée
Walter Roberson
le 2 Mai 2016
2 commentaires
Walter Roberson
le 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;
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Read, Write, and Modify Image dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!