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