summaryrefslogtreecommitdiffstats
path: root/SD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m
diff options
context:
space:
mode:
Diffstat (limited to 'SD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m')
-rwxr-xr-xSD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m20
1 files changed, 20 insertions, 0 deletions
diff --git a/SD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m b/SD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m
new file mode 100755
index 0000000..68aec3f
--- /dev/null
+++ b/SD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m
@@ -0,0 +1,20 @@
1% [NBANDS] = spyrNumBands(INDICES)
2%
3% Compute number of orientation bands in a steerable pyramid with
4% given index matrix. If the pyramid contains only the highpass and
5% lowpass bands (i.e., zero levels), returns 0.
6
7% Eero Simoncelli, 2/97.
8
9function [nbands] = spyrNumBands(pind)
10
11if (size(pind,1) == 2)
12 nbands = 0;
13else
14 % Count number of orientation bands:
15 b = 3;
16 while ((b <= size(pind,1)) & all( pind(b,:) == pind(2,:)) )
17 b = b+1;
18 end
19 nbands = b-2;
20end