How to make a loop to generate wavelet coefficients of multiple images and save them?
Show older comments
I am new to matlab i am hving problem to make a program. Can anyone help please
Answers (2)
Wayne King
on 19 May 2013
0 votes
The wavelet coefficients are the output of wavedec2(). You can can simply save them in a matrix if the images are all the same size, or in a cell array if the images are not the same size
1 Comment
Wayne King
on 19 May 2013
Why are you attempting to perform the wavelet transform on scrfiles?
I = imread(filename);
[c,s]=wavedec2(srcfiles,2,'db1');
You should be doing the wavelet transform on the image, I.
Categories
Find more on Image Analysis in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!