⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 haardec.m

📁 EZW implementation which will use wavelet transforms and do the compression decompression using EZW
💻 M
字号:
function de_x=haardec(X)
c=double(X);
t=1;
level=1;
h=size(X,2);

while and(h>1,t<=level)
  for row=1:h
    c(row,:)=haar(c(row,:),h);
  end

  for col=1:h
%     temp=haar(c(:,col)',h);
%     c(:,col)=temp';
    c(:,col)=haar(c(:,col),h);
  end
h=h/2;
t=t+1;
end
de_x=c;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -