摘要: 低频体现轮廓,高频体现细节 阅读全文
posted @ 2016-09-02 18:18 夕西行 阅读(2754) 评论(0) 推荐(0) 编辑
摘要: clc,clear all,close all; load woman; t=wpdec2(X,2,'haar');%小波包2层分解 r_X=wprec2(t);%重构小波包 r_X10=wprcoef(t,[1,0]);%重构小波包(1,0)结点 figure; subplot(1,3,1),imshow(uint8(X)),title('原图'); subplot(1,3,2),imshow... 阅读全文
posted @ 2016-09-02 16:42 夕西行 阅读(713) 评论(0) 推荐(0) 编辑
摘要: clc,clear all,close all; load woman; [cA,cH,cV,cD]=swt2(X,2,'haar');%用haar小波基进行2尺度平稳小波分解 Y=iswt2(cA,cH,cV,cD,'haar'); figure; subplot(1,2,1),imshow(uint8(X)),title('原图'); subplot(1,2,2),imshow(uint8(... 阅读全文
posted @ 2016-09-02 13:45 夕西行 阅读(452) 评论(0) 推荐(0) 编辑