diff options
author | leochanj105 <leochanj@live.unc.edu> | 2020-10-19 23:09:30 -0400 |
---|---|---|
committer | leochanj105 <leochanj@live.unc.edu> | 2020-10-20 02:40:39 -0400 |
commit | f618466c25d43f3bae9e40920273bf77de1e1149 (patch) | |
tree | 460e739e2165b8a9c37a9c7ab1b60f5874903543 /SD-VBS/benchmarks/texture_synthesis/src/matlab/spyrNumBands.m | |
parent | 47ced4e96bbb782b9e780e8f2cfc637b2c21ff44 (diff) |
initial sd-vbs
initial sd-vbs
add sd-vbs
sd-vbs
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, 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 | |||
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 | ||