• 大小: 171KB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-14
  • 语言: Matlab
  • 标签: matlab  

资源简介

基于matlab的小波变换去噪处理三种方法-自编各种小波变换去噪.rar
里面有详细的解释。最后有图像评价,计算均方误差和信噪比。

资源截图

代码片段和文件信息

%计算贝叶斯阈值,X为输入的系数,sigmahat为噪声估计标准方差
function threshold=bayes(Xsigmahat)
len=length(X);
sigmay2=sum(X.^2)/len;
sigmax=sqrt(max(sigmay2-sigmahat^20));
if sigmax==0 
    threshold=max(abs(X));
else
    threshold=sigmahat^2/sigmax;
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        267  2010-05-11 09:56  自编各种小波变换去噪\bayes.m

     文件     175945  2010-05-11 09:50  自编各种小波变换去噪\bayes.pdf

     文件        209  2010-05-11 10:08  自编各种小波变换去噪\hthresh.m

     文件        233  2010-05-11 09:42  自编各种小波变换去噪\sthresh.m

     文件       4544  2010-05-15 22:18  自编各种小波变换去噪\zibianxiaoboquzao.m

     目录          0  2010-05-11 14:02  自编各种小波变换去噪

----------- ---------  ---------- -----  ----

               181198                    6


评论

共有 条评论