denoising an image

2 Ansichten (letzte 30 Tage)
FIR
FIR am 22 Mär. 2012
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

Antworten (0)

Kategorien

Mehr zu Denoising and Compression finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by