[go: up one dir, main page]

Menu

[17deec]: / comp / comp_uwpfbt.m  Maximize  Restore  History

Download this file

72 lines (58 with data), 2.2 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
function c=comp_uwpfbt(f,wtNodes,rangeLoc,nodesUps,scaling,interscaling)
%COMP_UWPFBT Compute Undecimated Wavelet Packet Filterbank Tree
% Usage: c=comp_uwpfbt(f,wtNodes,nodesUps);
%
% Input parameters:
% f : Input data as L*W array.
% wtNodes : Filterbank tree nodes (elementary filterbanks) in
% BF order. Cell array of structures of length *nodeNo*.
% nodesUps : Filters upsampling factor of each node. Array of
% length *nodeNo*.
%
% Output parameters:
% c : Coefficients stored in L*M*W array.
%
% Pre-allocated output
[L, W] = size(f);
M = sum(cellfun(@(wtEl) numel(wtEl.h),wtNodes));
c = zeros(L,M,W,assert_classname(f,wtNodes{1}.h{1}.h));
% Convenience input reshape
ca = reshape(f,size(f,1),1,size(f,2));
cOutRunIdx = 1;
cInRunIdxs = [1];
interscalingfac = 1;
if strcmp('intscale',interscaling)
interscalingfac = 1/2;
elseif strcmp('intsqrt',interscaling)
interscalingfac = 1/sqrt(2);
end
% For each node in tree in the BF order...
for jj=1:numel(wtNodes)
% Node filters subs. factors
a = wtNodes{jj}.a;
% Optionally scale the filters
h = comp_filterbankscale(wtNodes{jj}.h(:),a(:),scaling);
% Node filters to a matrix
% hMat = cell2mat(cellfun(@(hEl) conj(flipud(hEl.h(:))),h','UniformOutput',0));
hMat = cell2mat(cellfun(@(hEl) hEl.h(:),h','UniformOutput',0));
% Node filters initial skips
% hOffet = cellfun(@(hEl) 1-numel(hEl.h)-hEl.offset,wtNodes{jj}.h);
hOffet = cellfun(@(hEl) hEl.offset, wtNodes{jj}.h);
% Number of filters of the current node
filtNo = size(hMat,2);
% Zero index position of the upsampled filters.
offset = nodesUps(jj).*(hOffet);
% Run filterbank
c(:,cOutRunIdx:cOutRunIdx + filtNo-1,:)=...
comp_atrousfilterbank_td(squeeze(ca(:,1,:)),hMat,nodesUps(jj),offset);
% Bookkeeping
outRange = cOutRunIdx:cOutRunIdx+filtNo-1;
outRange(rangeLoc{jj}) = [];
cInRunIdxs = [cInRunIdxs(2:end),outRange];
cOutRunIdx = cOutRunIdx + filtNo;
% Prepare input for the next iteration
if ~isempty(cInRunIdxs)
c(:,cInRunIdxs(1),:) = c(:,cInRunIdxs(1),:)*interscalingfac;
ca = c(:,cInRunIdxs(1),:);
end
end