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 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149
|
function test_failed = test_uwfbt(verbose)
%-*- texinfo -*-
%@deftypefn {Function} test_uwfbt
%@verbatim
%TEST_UWFBTPR
%
% Checks perfect reconstruction of the general wavelet transform of different
% filters
%
%@end verbatim
%@strong{Url}: @url{http://ltfat.github.io/doc/testing/test_uwfbt.html}
%@end deftypefn
% Copyright (C) 2005-2016 Peter L. Soendergaard <peter@sonderport.dk>.
% This file is part of LTFAT version 2.2.0
%
% This program is free software: you can redistribute it and/or modify
% it under the terms of the GNU General Public License as published by
% the Free Software Foundation, either version 3 of the License, or
% (at your option) any later version.
%
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
%
% You should have received a copy of the GNU General Public License
% along with this program. If not, see <http://www.gnu.org/licenses/>.
disp('========= TEST UWPFBT ============');
global LTFAT_TEST_TYPE;
tolerance = 1e-8;
if strcmpi(LTFAT_TEST_TYPE,'single')
tolerance = 4e-6;
end
scaling = {'scale','sqrt','noscale'};
scalingInv = scaling(end:-1:1);
test_failed = 0;
if(nargin>0)
verbose = 1;
else
verbose = 0;
end
type = {'dec'};
ext = {'per'};
J = 4;
%! Mild tree
wt1 = wfbtinit({'db10',6,'full'});
wt1 = wfbtremove(1,1,wt1,'force');
wt1 = wfbtremove(2,1,wt1,'force');
%! Hardcore tree
wt2 = wfbtinit({'db3',1});
wt2 = wfbtput(1,1,'mband1',wt2);
wt2 = wfbtput(2,2,'mband1',wt2);
wt2 = wfbtput(3,3,'mband1',wt2);
wt2 = wfbtput(3,1,'db10',wt2);
wt2 = wfbtput(4,1,'dgrid2',wt2);
wt2 = wfbtput(5,1,'db2',wt2);
% wt2 = wfbtinit();
% wt2 = wfbtput(0,0,{'db',4},wt2);
% wt2 = wfbtput(1,0,{'algmband',1},wt2);
% wt2 = wfbtput(1,1,{'hden',3},wt2);
% wt2 = wfbtput(2,0,{'dgrid',2},wt2);
% wt2 = wfbtput(2,1,{'dgrid',2},wt2);
test_filters = {
{'algmband1',J} % 3 filters, uniform, crit. sub.
{'algmband2',J} % 4 filters, uniform, crit. sub.
{'db10',J}
%{{'hden',3},J} % 3 filters, non-uniform, no crit. sub. no correct
{'dgrid1',J} % 4 filters. sub. fac. 2
wt1
wt2
};
%testLen = 4*2^7-1;%(2^J-1);
testLen = 53;
f = tester_rand(testLen,1);
for scIdx = 1:numel(scaling)
for extIdx=1:length(ext)
extCur = ext{extIdx};
for typeIdx=1:length(type)
for tt=1:length(test_filters)
actFilt = test_filters{tt};
if verbose, if(~isstruct(actFilt))fprintf('J=%d, filt=%s, ext=%s, inLen=%d \n',actFilt{2},actFilt{1},extCur,length(f)); else disp('Custom'); end; end;
c = uwfbt(f,actFilt,scaling{scIdx});
fhat = iuwfbt(c,actFilt,scalingInv{scIdx});
err = norm(f-fhat,'fro');
[test_failed,fail]=ltfatdiditfail(err,test_failed,tolerance);
if(~verbose)
if(~isstruct(actFilt))
fprintf('J=%d, %5.5s, ext=%s, %s L=%d, err=%.4e %s \n',actFilt{2},actFilt{1},extCur,scaling{scIdx},size(f,1),err,fail);
else
fprintf('Custom, %s, err=%.4e %s\n',scaling{scIdx},err,fail);
end;
end
if strcmpi(fail,'FAILED')
if verbose
if(~isstruct(actFilt)) fprintf('err=%d, filt=%s, ext=%s, inLen=%d \n',err,actFilt{1},extCur,testLen);else disp('Fail. Custom'); end;
figure(1);clf;stem([f,fhat]);
figure(2);clf;stem([f-fhat]);
break;
end
end
if test_failed && verbose, break; end;
end
if test_failed && verbose, break; end;
end
if test_failed && verbose, break; end;
end
end
|