I am getting the error Missing variable or function when I am trying to implement a code on 2 dimensional DWT on images in MATLAB 7. The code is given below.
4 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Debarpita Chaudhuri
el 8 de Mzo. de 2016
Editada: Debarpita Chaudhuri
el 16 de Mzo. de 2016
f = imread('Region_of_interest.bmp');
imshow(f)
wname = 'sym4';
[CA,CH,CV,CD] = dwt2(X,wname,'mode','per');
subplot(211)
imagesc(CV); title('Vertical Detail Image');
subplot(212)
imagesc(CA); title('Lowpass Approximation');
Sir, kindly help me.
thanks and regards
Debarpita Chaudhuri.
0 comentarios
Respuesta aceptada
Walter Roberson
el 8 de Mzo. de 2016
dwt2() is part of the Wavelet toolbox. You would need to have that installed and licensed.
2 comentarios
Debarpita Chaudhuri
el 16 de Mzo. de 2016
Editada: Debarpita Chaudhuri
el 16 de Mzo. de 2016
Más respuestas (0)
Ver también
Categorías
Más información sobre Denoising and Compression en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
