diff options
Diffstat (limited to 'SD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m')
-rwxr-xr-x | SD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m | 20 |
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 | |||
9 | function [nbands] = spyrNumBands(pind) | ||
10 | |||
11 | if (size(pind,1) == 2) | ||
12 | nbands = 0; | ||
13 | else | ||
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; | ||
20 | end | ||