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(uint8(r_X)),title('重构');
subplot(1,3,3),imshow(uint8(r_X10)),title('重构(1,0)结点');

  二维小波包重构wprec2\wprcoef

相关文章:

  • 2021-05-17
  • 2021-11-28
  • 2021-12-02
  • 2021-12-08
  • 2022-01-10
  • 2021-10-05
  • 2022-02-08
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-05
  • 2022-02-08
  • 2021-07-01
  • 2022-12-23
  • 2022-01-16
相关资源
相似解决方案