How to make a loop to generate wavelet coefficients of multiple images and save them?
Mostrar comentarios más antiguos
I am new to matlab i am hving problem to make a program. Can anyone help please
Respuestas (2)
Wayne King
el 19 de Mayo de 2013
0 votos
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 comentario
Wayne King
el 19 de Mayo de 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 comentario
seri
el 19 de Mayo de 2013
Categorías
Más información sobre Signal Analysis en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!