Clear Filters
Clear Filters

How to perform lifting haar wavelet?

2 views (last 30 days)
fzhmktr
fzhmktr on 22 May 2019
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

Answers (0)

Categories

Find more on Discrete Multiresolution Analysis in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!