background for design gui
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How do I use background for gui design?
2 Commenti
Risposta accettata
TAB
il 7 Giu 2012
In the OpeningFcn callback of your GUI add below code
BkImage = importdata('backgnd.jpg'); %Read the image file
axes(handles.BkAxes);
image(BkImage);
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Convert Image Type in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!