?? lpr.m
字號(hào):
function x = lpr(y, pfilt)% LPR Multi-level Laplacian pyramid reconstruction%% x = lpr(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(x, y{n}, h, g, extmod);end
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -