I am new to Matlab and I am trying to use the wavelet tool box in Matlab. I hope to use the undecimated wavelet transformation on an input image to create a series of images. But I am wondering how can I get the result of the wavelet transformation of each level?
The function I used in the program is
WTSource = ndwt2(Source, n, 'db1');
Where Source is the input image, n is the levels of the transformatino and 'db1', or haar transformation, is used to generate the images.
I had thought WTSource.dec is the result images, but I found that the size of the elements in WTSource.dec is different from the input image. And as n increases, the images became larger. So I am wondering how should I get the result images of the transformation for further use?