display_image_layout.m

来自「image denoising toolbox in matlab」· M 代码 · 共 40 行

M
40
字号
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 Peyreerror('Use imageplot instead');m = 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);    imageplot( clamp(M)*255, TitleList{i}, a,b,i);end% linkaxes(ax, 'xy');% colormap gray(256);

⌨️ 快捷键说明

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