denoising an image

1 次查看(过去 30 天)
FIR
FIR 2012-3-22
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 个)

类别

Help CenterFile Exchange 中查找有关 Signal Analysis 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by