place_images.m

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

M
11
字号
function Place_images (Dimension, Images)
% creates a new window that contains all the specified existing windows/images
% along with possible lines and other graphics, but without menus
% Dimension is in the form [x, y] and Images is an array of their numbers

figure;
for i=1:size(Images, 1)
	subplot(Dimension(1), Dimension(2), i);
	image_children = get(Images[i], 'Children');
	

⌨️ 快捷键说明

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