lpr_old.m

来自「This toolbox contains Matlab files that 」· M 代码 · 共 32 行

M
32
字号
function x = lpr_old(y, pfilt)% LPR_OLD   Multi-level Laplacian pyramid reconstruction using the old method%%	x = lpr_old(y, pfilt)%% Input:%   y:      output of a Laplacian pyramid in a cell vector%   pfilt:  pyramid filter name (see PFILTERS)%% Output:%   x:      reconstructed signal%% See also: LPD% Get the pyramidal filters from the filter name[h, g] = pfilters(pfilt);% Decide extension modeswitch pfilt    case {'9-7', '9/7', '5-3', '5/3', 'Burt'}        extmod = 'sym';            otherwise        extmod = 'per';        endx = y{1};for n = 2:length(y)    x = lprec1_old(x, y{n}, h, g, extmod);end

⌨️ 快捷键说明

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