spyrht.m

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

M
17
字号
% [HEIGHT] = spyrHt(INDICES)%% Compute height of steerable pyramid with given index matrix.% Eero Simoncelli, 6/96.function [ht] =  spyrHt(pind)nbands = spyrNumBands(pind);% Don't count lowpass, or highpass residual bandsif (size(pind,1) > 2)  ht = (size(pind,1)-2)/nbands;else  ht = 0;end

⌨️ 快捷键说明

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