我是小波和数字图像处理的新手.. 我为自己的脸部图像编写了一个小代码进行小波分解,但似乎存在一些问题
X = imread('face.jpg');
[cA1,cH1,cV1,cD1] = dwt2(X,'db1');
i = [ cA1 cH1; cV1 cD1];
imshow(i)
有人能告诉我这里有什么问题,或者我错过了什么。
答案 0 :(得分:1)
我猜这可能是问题,这是一个解决方案。尝试使用wcodemat
重新缩放矩阵以进行显示(无耻地翻录http://www.mathworks.com/help/wavelet/ref/wcodemat.html):
load woman;
% Get the range of the colormap
NBCOL = size(map,1);
% Obtain the 2D dwt using the Haar wavelet
[cA1,cH1,cV1,cD1] = dwt2(X,'db1');
% Display without scaling
image(cA1);
colormap(map);
title('Unscaled Image');
figure;
% Display with scaling
image(wcodemat(cA1,NBCOL));
colormap(map);
title('Scaled Image');