i've used the undecimated wavelet transform...i dont know how to extract low frequency and high frequency component out of it. the code is shown below.can anybody help me in doing so?
1 次查看(过去 30 天)
显示 更早的评论
the code i wrote is ;
grayImage=rgb2gray(imread('inputImage'));
w1=ndwt2(grayImage,1,'haar');
w1.filters;
w1.dec;
LL=w1.dec{1}; %low frequency component
HH=w1.dec{4}; %high frequency component
the component i extracted at level 1(n=1) corresponding to LL and HH are correct or not???
plz tell me
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Discrete Multiresolution Analysis 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!