📄 spyrband.m
字号:
% [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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -