How to perform lifting haar wavelet?

2 次查看(过去 30 天)
fzhmktr
fzhmktr 2019-5-22
Is it possible for me to make a lifting haar from this code? This is code for haar wavelet decomposition.
function coeffs = HaarDec(I,nScales)
coeffs = zeros([size(I),2*nScales]);
for k = 1:nScales
Haar_fil = 2^(-k)*ones(2^k,2^k);
Haar_fil(1:(end/2),:) = -Haar_fil(1:(end/2),:);
coeffs(:,:,k) = conv2(X,Haar_fil,'same');
coeffs(:,:,k + nScales) = conv2(I,Haar_fil','same');
end
end

回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Discrete Multiresolution Analysis 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by