denoising an image
2 次查看(过去 30 天)
显示 更早的评论
I have performed denoising of images using 2d-dwt,now how to plot each subbands such as
LL2,HL2,LH2,HH2,HL1,LH1,HH1,
my code is
I=imread('lena.bmp');
s=imresize(I,[256 256])
N = 256;
% Noise variance
sigma_n = 3;
n = sigma_n*randn(N);
% Add noise
x = double(s) + double(n);
% Run local adaptive image denoising algorithm using dual-tree DWT.
y = denoising_dtdwt(x);
please help
0 个评论
回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Denoising and Compression 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!