GUI - Is it possible to show a logo without having the end-user to have the image processing toolbox installed?

1 view (last 30 days)
Hello, I just wrote a GUI which works fine on my PC. Yesterday I ran it on another pc and two pictures weren't show. This happened because the matlab on that pc didn't have the for "imshow()" required toolbox installed.
To make the logo appear I just create an axis and call imshow().
Is there a way to show images without imshow()? I mean, I could somehow process the image on my pc and then "store the data in a variable" which should be loaded by the user's pc without the need of the image processing toolbox.
TIA, Stefano

Answers (1)

Sean de Wolski
Sean de Wolski on 1 Mar 2012
You could use image().
doc image
You will have to generate the colormap and axes directions manually though.

Categories

Find more on Display Image in Help Center and File Exchange

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!