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

Private GIT Repository
7 avril pour jury
[these_gilles.git] / THESE / codes / wave / allcode / idwt2D.m
1 function y = idwt2D(w, J, sf)
2
3 % Inverse 2-D Discrete Wavelet Transform
4 %
5 % USAGE:
6 %   y = idwt(w, J, sf)
7 % INPUT:
8 %   w - wavelet coefficients
9 %   J  - number of stages
10 %   sf - synthesis filters
11 % OUTPUT:
12 %   y - output array
13 % See dwt2D
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 = sfb2D(y, w{k}, sf, sf);
21 end
22