Background image in standalone GUI
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
回答(2 个)
Image Analyst
2011-12-10
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 个评论
ANUBHAV SINHA
2011-12-10
1 个评论
Image Analyst
2011-12-11
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().
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!