at_dwt1d.m

来自「压缩感知中一种测量方法。介绍如何构造测量矩阵。」· M 代码 · 共 24 行

M
24
字号
% Written by Thong Do, JHU, 2007
% modified, Feb. 2008

function alpha = At_dwt1d(At,b,h0,h1,L,m,n)
% alpha: sparse vector which is taken from Wavelet transform of image x
% A: random projection matrix K x N
% h0, h1: lowpass and highpass filter at the analysis part
% L: level of decomposition
% m, n: size of image
% Return b: vector K x 1

% converting measurements into samples
if ~isa(At, 'function_handle')
    x = At*b;
else
    x = At(b);
end
% converting samples into wavelet coefficients (sparse representation)
im = reshape(x,m,n);
u = dwt2d(im,h0,h1,L);
alpha = u(:);


⌨️ 快捷键说明

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