📄 m1_w3.m
字号:
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% m1_w3.m
%
% callback for window-display pushbutton 3 for m1
%
% PREVIEW WINDOW
%
% jmw
% 6/8/94
% modified by D. G. Childers 2/16/98
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%if (~isempty(w3_h))
% ;
% do nothing, window is already open
% return;
%else
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% do following ONLY if window was just opened
% initialize window:
if (isempty(w3_saved_position))
w3_h=figure('Position',[100 150 740 430],'Numbertitle','off','Name',...
'Preview: Segmentation & Labeling Results' ,'Resize','on',...
'Color',BACK_COLOR);
else
w3_h=figure('Position',w3_saved_position,'Numbertitle','off','Name',...
'Preview: Segmentation & Labeling Results' ,'Resize','on',...
'Color',BACK_COLOR);
end;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% call external mfile to plot
%fun_prev(name,BACK_COLOR,TEXT_COLOR,linecolor);
fun_prev;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
% add 'OK' function button
w3_pb_ok_h=uicontrol('Position',[0.01 .90 .09 .050],'String','OK',...
'Callback','w3_ok','Units','normalized');
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%return;
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%end; % end ~isempty(w3_h)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -