1D Haar wavelet transform

조회 수: 3 (최근 30일)
shima said
shima said 2013년 12월 15일
댓글: Walter Roberson 2013년 12월 18일
how to Decompose query image using Haar Wavelet
transformation at 1st level
then I want to Calculate mean and standard deviation of each coefficient and form one dimensional feature vector.
I don't know how to use wavelet Toolbox

답변 (1개)

Wayne King
Wayne King 2013년 12월 15일
편집: Wayne King 2013년 12월 15일
If you are sure you just want the 1st-level (and no further), you can use dwt2.
If you need multiple levels, use wavedec2().
However, your statement " mean and standard deviation of each coefficient and form one dimensional feature vector." does not make sense.
Do mean the mean and standard deviation of each subband image?
You can easily obtain the subband images
load woman;
dwtmode('per');
[CA,CH,CV,CD] = dwt2(X,'haar');
CH, CV, and CD are the wavelet subband images. Now can you point me to some text which describes how to find your feature vector from those matrices?
  댓글 수: 6
shima said
shima said 2013년 12월 15일
편집: shima said 2013년 12월 15일
I am very sorry I don't konw how did that happe :( i copied it and when i sent it looked like that
Walter Roberson
Walter Roberson 2013년 12월 18일
shima commented,
I want to containing the mean value and the variance of each image's coefficients.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Continuous Wavelet Transforms에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by