]> AND Private Git Repository - these_gilles.git/blob - THESE/codes/wave/allcode/idwt3D.m
Logo AND Algorithmique Numérique Distribuée

Private GIT Repository
modif finale lnivs + keywords
[these_gilles.git] / THESE / codes / wave / allcode / idwt3D.m
1 function y = idwt3D(w, J, sf)
2
3 % Inverse 3-D Discrete Wavelet Transform
4 %
5 % USAGE:
6 %   y = idwt3D(w, J, sf)
7 % INPUT:
8 %   w - wavelet coefficient
9 %   J  - number of stages
10 %   sf - synthesis filters
11 % OUTPUT:
12 %   y - output array
13 % See: dwt3D
14 %
15 % WAVELET SOFTWARE AT POLYTECHNIC UNIVERSITY, BROOKLYN, NY
16 % http://taco.poly.edu/WaveletSoftware/
17
18 y = w{J+1};
19 for k = J:-1:1
20    y = sfb3D(y, w{k}, sf, sf, sf);
21 end
22