pyrband.m

来自「matlab的steel金字塔小波分解源代码」· M 代码 · 共 12 行

M
12
字号
% RES = pyrBand(PYR, INDICES, BAND_NUM)%% Access a subband from a pyramid (gaussian, laplacian, QMF/wavelet, % or steerable).  Subbands are numbered consecutively, from finest% (highest spatial frequency) to coarsest (lowest spatial frequency).% Eero Simoncelli, 6/96.function res =  pyrBand(pyr, pind, band)res = reshape( pyr(pyrBandIndices(pind,band)), pind(band,1), pind(band,2) );

⌨️ 快捷键说明

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