还是不行function rrun()
% run: The driver program for the demo. Defines the GUI, and when the button
% "Start" is pressed, loads the images in the directory "images" and
% runs the program for each one of them.
% remove NN warnings:
NNTWARN OFF
% GUI settings:
gcf = figure(1); % defining the frame:
scrsz = get(0,'ScreenSize'); % the size of the screen.
set(gcf, 'Position', [0 0 scrsz(3) scrsz(4)/1.1]);
set(gcf,'color','white');
%%%%%%%%%
ha=axes('units','normalized','position',[0 0 1 1]);
uistack(ha,'down')
II=imread('2014.JPG');
image(II)
colormap gray
set(ha,'handlevisibility','off','visible','off');
%%%%%%%%%%%%%%%%%%%%%%%%
load 'global_var.mat