Background image in standalone GUI
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
I am constructing a standalone GUI exe. The GUI has a image in its background. I use the command 'imshow(folder path of image)' to display the image within a axes graphic obect....example.. axes(handles.Photo_name); imshow('C:\Users\XYZ\Desktop\Photo_name.PNG')
However, when I package it as a standalone windows exe, the image is not displayed if I run it on another computer that doesnot have MATLAB.
Kindly guide about how this problem be solved. I want this GUI exe to be accessed by anyone across the world without the need of MATLAB.
0 Commenti
Risposte (2)
Image Analyst
il 10 Dic 2011
Are you sure that image is located in that EXACT path that you hard coded in there on your target computer? My guess is no. Did you check the console window for any error messages that you printed out? You DID use try/catch and exist(filename, 'file') for robustness, didn't you? (Again, I'd guess no.) So you should see a warning in the console window when/if your code failed to find the file, or any other error that may have occurred.
0 Commenti
ANUBHAV SINHA
il 10 Dic 2011
1 Commento
Image Analyst
il 11 Dic 2011
Use the -a option to bundle other files into your installer. You can include .mat files, image files, data files, Excel templates, user manuals, etc. You still would have just one installer (.exe). To make the file path independent you'd have to use ctfroot and fullfile() and exist().
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox 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!