spyrband.m

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

M
35
字号
% [LEV,IND] = spyrBand(PYR,INDICES,LEVEL,BAND)%% Access a band from a steerable pyramid.% %   LEVEL indicates the scale (finest = 1, coarsest = spyrHt(INDICES)).% %   BAND (optional, default=1) indicates which subband %     (1 = vertical, rest proceeding anti-clockwise).% Eero Simoncelli, 6/96.function res =  spyrBand(pyr,pind,level,band)if (exist('level') ~= 1)  level = 1;endif (exist('band') ~= 1)  band = 1;endnbands = spyrNumBands(pind);if ((band > nbands) | (band < 1))  error(sprintf('Bad band number (%d) should be in range [1,%d].', band, nbands));end	maxLev = spyrHt(pind);if ((level > maxLev) | (level < 1))  error(sprintf('Bad level number (%d), should be in range [1,%d].', level, maxLev));endfirstband = 1 + band + nbands*(level-1);res  = pyrBand(pyr, pind, firstband);

⌨️ 快捷键说明

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