How to load image to another script file using matlab GUI?
Mostra commenti meno recenti
Hi every one. i want to build a GUI such that when I press a pushbutton it loads image and display it and also send that image to a .m script file
Risposte (1)
Apdullah YAYIK
il 14 Set 2014
0 voti
Create button and Callback of this button write this code ;
_t=imread('samlpe.tiff') % load image
save(t) % save as .mat
% you can send image as MATLAB .mat file not as .m script
Then create axes object an name it as axes1
imshow(t,'Parent',handles.a_ axes1) % display image_
1 Commento
Imran Ali Shah
il 14 Set 2014
Categorie
Scopri di più su Printing and Saving in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!