summaryrefslogtreecommitdiffstats
path: root/SD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m
diff options
context:
space:
mode:
authorleochanj105 <leochanj@live.unc.edu>2020-10-20 03:47:33 -0400
committerleochanj105 <leochanj@live.unc.edu>2020-10-20 03:47:33 -0400
commita32f220f06cc463e5b56e7fa0b1b1334d94d08f3 (patch)
tree4af4caa60074465d85fc2ef5cc1b23e74c064329 /SD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m
parent79f30887129145e15e5172e36a7d7602859fc932 (diff)
matlab removed
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, 0 insertions, 20 deletions
diff --git a/SD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m b/SD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m
deleted file mode 100755
index 68aec3f..0000000
--- a/SD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m
+++ /dev/null
@@ -1,20 +0,0 @@
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