Info
This question is closed. Reopen it to edit or answer.
Hello! I am new to matlab. I just want to execute a simple GUI code in which i can display an image from base workspace through callback function(pushbutton1).
1 view (last 30 days)
Show older comments
It is working when i read the image inside
the callback function but not
ouside like given below:
I = imread('Edge.png'); % base workspace variable.
function pushbutton1_Callback(hObject, eventdata, handles)
axes(handles.axes1);
imshow(I);
How can i import variable 'I' into my pushbutton function.
0 Comments
Answers (1)
Ahmet Cecen
on 28 Oct 2016
Edited: Ahmet Cecen
on 28 Oct 2016
I don't have the time to write the actual thing here at the moment, but check one of my simpler GUIs here to see how it is done:
0 Comments
This question is closed.
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!