I donβt know if this will work for OSX, but on Windows I was able to use the Java code from this MATLAB news stream to create a full screen window with no title, edges, etc. and displaying the image in the middle. Here is how I made the window:
img = imread('peppers.png'); %
And you can hide the frame again by doing the following:
frame.hide;
Not sure how this will work in general to display the typical MATLAB GUI. I will have to play more with him and find out.
source share