How to call the axes into push button in GUI?
4 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Mohan Prasath Thirumalaisamy
le 21 Avr 2013
Commenté : muhammad zulhelmy
le 5 Mar 2017
Hi, I have an input image and i have loaded into GUI using axes. my code
handles.input_image = double(rgb2gray(imread('Trial_image.jpg')));
axes(handles.in_image);
image(handles.input_image);
The variable name is handles.input_image and the tag name is handles.in_image.
when i call the tag name of the axes to get the image into the push button. it doesnt have the image. The variable has the image but how can i use it in the push button. any ideas? Thanks in advance
0 commentaires
Réponse acceptée
Azzi Abdelmalek
le 21 Avr 2013
Modifié(e) : Azzi Abdelmalek
le 21 Avr 2013
To display your image use
imshow(handles.input_image);
5 commentaires
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!