lpyrHt.m 233 B

1234567891011
  1. % [HEIGHT] = lpyrHt(INDICES)
  2. %
  3. % Compute height of Laplacian pyramid with given its INDICES matrix.
  4. % See buildLpyr.m
  5. % Eero Simoncelli, 6/96.
  6. function [ht] = lpyrHt(pind)
  7. % Don't count lowpass residual band
  8. ht = size(pind,1)-1;