• 大小: 0.22M
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2021-03-27
  • 语言: 其他
  • 标签: 其他  

资源简介


使用97小波对图像进行4层小波变换,也可根据个人需要改变程序,对其进行任何层变换

资源截图

代码片段和文件信息

   x=imread(‘lena.bmp‘); 
   x=double(x);
   % decompose 
   y=waveletcdf97(x4); 
   % show decomposed result 
   figure;imshow(mat2gray(y)); 
   % reconstruct without change of anything 
   ix=waveletcdf97(y-4); 
   % show and compare the original and reconstructed images 
   figure;subplot(121);imshow(uint8(x));subplot(122);imshow(uint8(ix)) 
   % look at the MSE difference 
   sum(sum((double(x)-ix).^2))/numel(x)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2013-03-28 15:45  DWT\
     文件         436  2013-03-28 15:23  DWT\DWT4.m
     文件      263222  2012-10-18 08:52  DWT\lena.bmp
     文件        5844  2012-10-24 10:10  DWT\waveletcdf97.m

评论

共有 条评论