I need a code for Haar wavelet transform.

2 次查看(过去 30 天)
Am currently working on image processing, am using Haar Wavelet transform for the feature extraction, i need a good working code on for it.
Thank you.

采纳的回答

Wayne King
Wayne King 2014-2-7
You can use wavedec2() with either wavelet name 'haar', or 'db1'
load woman;
J = 4; % level of the MRA
[C,S] = wavedec2(X,J,'haar');
See the help for appcoef2() and detcoef2() for how to pull out the approximation and detail coefficients.

更多回答(1 个)

Walter Roberson
Walter Roberson 2014-2-7
http://www.mathworks.com/help/wavelet/ref/dbaux.html with N = 2. Haar is also called db2

类别

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

Community Treasure Hunt

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

Start Hunting!

Translated by