码迷,mamicode.com
首页 > 其他好文 > 详细

单尺度二维离散小波分解dwt2

时间:2016-08-31 20:26:56      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

clc,clear all,close all;
load woman;
[cA,cH,cV,cD]=dwt2(X,‘haar‘);%单尺度二维离散小波分解。分解小波函数haar
figure,imshow(X,map),axis image;
figure;
subplot(2,2,1),imshow(uint8(cA));axis off;title(‘低频系数图像‘);
subplot(2,2,2),imshow(uint8(cH));axis off;title(‘水平高频系数图像‘);
subplot(2,2,3),imshow(uint8(cV));axis off;title(‘垂直高频系数图像‘);
subplot(2,2,4),imshow(uint8(cD));axis off;title(‘斜线高频系数图像‘);

  技术分享          技术分享

单尺度二维离散小波分解dwt2

标签:

原文地址:http://www.cnblogs.com/xixixing/p/5827105.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!