How to make a loop to generate wavelet coefficients of multiple images and save them?
이전 댓글 표시
I am new to matlab i am hving problem to make a program. Can anyone help please
답변 (2개)
Wayne King
2013년 5월 19일
0 개 추천
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
Wayne King
2013년 5월 19일
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.
카테고리
도움말 센터 및 File Exchange에서 Signal Analysis에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!