How to make a loop to generate wavelet coefficients of multiple images and save them?
Afficher commentaires plus anciens
I am new to matlab i am hving problem to make a program. Can anyone help please
Réponses (2)
Wayne King
le 19 Mai 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 commentaire
Wayne King
le 19 Mai 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.
1 commentaire
seri
le 19 Mai 2013
Catégories
En savoir plus sur Image Analysis dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!