📄 ddown.m
字号:
function y = ddown(x, step, phase)% DUP Diagonal Downsampling%% y = ddown(x, step, [phase])%% Input:% x: input image% step: upsampling factors for each dimension which should be a% 2-vector% phase: [optional] to specify the phase of the input image which% should be less than step, (default is [0, 0])% If phase == 'minimum', a minimum size of upsampled image% is returned%% Output:% y: diagonal upsampled image%% See also: DUP% Note : complement the DUP function in contourlet toolboxif ~exist('phase', 'var') phase = [0, 0];endsx = size(x);y = zeros(sx./step);y = x(1+phase(1):step(1):end, 1+phase(2):step(2):end);% if lower(phase(1)) == 'm'% y = zeros((sx - 1) .* step + 1); % y(1:step(1):end, 1:step(2):end) = x;% % else% y = zeros(sx .* step);% y(1+phase(1):step(1):end, 1+phase(2):step(2):end) = x;% end
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -