MATLAB图像处理进行小波变换
原理字太多,懒得打
程序如下
好好学习,天天向上
加油加油
%小波变换程序
a=imread('image1.jpg');
subplot(2,2,1);imshow(a);title('原始图像');
I=rgb2gray(a);subplot(2,2,2);imshow(I);title('原始图像的灰度图');
% 进行二维小波变换
[a,b] = wavedec2(I,2, 'db1');
% 提取各层低频信息
c = appcoef2( a, b, 'db1',1);subplot(2,2,3);imshow(c/255);title('一层小波变换结果');
d = appcoef2( a, b, 'db1',2);
subplot(2,2,4);imshow(d/255);title('二层小波变换结果');