display_image_layout.m

来自「A toolbox for the non-local means algori」· M 代码 · 共 39 行

M
39
字号
function display_image_layout(Mlist, TitleList, a, b)% display_image_layout - display a set of images together% %   display_image_layout(Mlist, TitleList, a, b);%%   Image should be in [0,1].%   b is the number of row (optional)%   a is the number of columns (optional)%% Example:%   display_image_layout( {A B}, {'image 1' 'image 2'} );%%   Copyright (c) 2007 Gabriel Peyrem = length(Mlist);if nargin<3    a = round( sqrt(m)/1.2 );endif nargin<4    b = ceil( m/a );endif a*b<m    warning('You must increase a and b');    m = a*n;endclf;ax = [];for i=1:m    M = Mlist{i};    ax(end+1) = subplot(a,b,i);    image( clamp(M)*255 ); axis image; axis off;    title(TitleList{i});endlinkaxes(ax, 'xy');colormap gray(256);

⌨️ 快捷键说明

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