st2.m

来自「随机信号处理中的经典去噪算法集合」· M 代码 · 共 34 行

M
34
字号
function out=ST2(Noisy,L,qmf,thresh)
%  ST2 -- Sofd Threshold Applied to Wavelet Coefficients.
%  Usage 
%    out = ST2(Noisy,L,qmf,sigma)
%  Inputs
%    Noisy      2-d signal.
%    L      Low-Frequency cutoff for shrinkage (e.g. L=4)
%               Should have L << J!
%    qmf    Quadrature Mirror Filter for Wavelet Transform
%               Optional, Default = Symmlet 8.
%    thresh Threshold to apply on wavelet coefficients
%  Outputs 
%    out     	estimate, obtained by applying hard thresholding on
%          	 wavelet coefficients	
%

  wcoef = FWT2_PO(Noisy,L,qmf) ;
  wcoefrest = SoftThresh(wcoef,thresh);
  out    = IWT2_PO(wcoefrest,L,qmf);

% Written by Maureen Clerc and Jerome Kalifa, 1997
% clerc@cmapx.polytechnique.fr, kalifa@cmapx.polytechnique.fr

    
    
%   
% Part of WaveLab Version 802
% Built Sunday, October 3, 1999 8:52:27 AM
% This is Copyrighted Material
% For Copying permissions see COPYING.m
% Comments? e-mail wavelab@stat.stanford.edu
%   
    

⌨️ 快捷键说明

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