Background image in standalone GUI
1 view (last 30 days)
Show older comments
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 Comments
Answers (2)
Image Analyst
on 10 Dec 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 Comments
ANUBHAV SINHA
on 10 Dec 2011
1 Comment
Image Analyst
on 11 Dec 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().
See Also
Categories
Find more on Image Processing Toolbox in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!