right_button.m

来自「mean shift」· M 代码 · 共 15 行

M
15
字号
if Interactive
	Region_right{I} = Region_left{I};
	Choice_right = uicontrol('Parent', New_wind);
	Call_back_right = ...
   	sprintf('Segment_demo(''Right'', %18.16f, %d)', Choice_right, I);
	set(Choice_right, 'Style', 'Popup', 'String', Regions_disp, ...
   	'Units', 'Normalized', 'Position', [0.55 0.5 0.45 0.5], ...
   	'Callback', Call_back_right);
else
	if Region_right{I} == 0
		msgbox('Please select 2-nd region', '2-nd region needed');
	end
	return;
end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?