Wavelet transform in Image processing
显示 更早的评论
We do Wavelet transform in image processing. The code below is one example.
[C,S] = wavedec2(X,2,'bior3.7');
In that decomposition, the filter 'bior3.7' is an array,
how to have a matrix of wavelet filter in 2D wavelet decomposition?
How can I have 'db1' 2D matrix filter for wavedec2?
Thanks.
回答(1 个)
D.Jaisil Rose
2018-3-22
0 个投票
Use dect2 [cA,cH,cV,cD] = dwt2(x,'db1','mode','sym');
类别
在 帮助中心 和 File Exchange 中查找有关 Continuous Wavelet Transforms 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!