필터 지우기
필터 지우기

Feature extraction using DWT and WPT

조회 수: 3 (최근 30일)
Tubi
Tubi 2018년 2월 17일
댓글: Rasheed Majeed 2021년 9월 16일
Hi,
Can anyone confirm if my method of feature extraction is correct or not? I have used DWT and later WPT to decompose and extract features from vibration signals.
For DWT, I used the following MATLAB functions:
Example:
x1= signal;
[cA1,cD1]= wavedec(x1,1,'db4');
...
plot(cA1); title('Level-1 Approximation Coefficients')
figure(1); subplot(313);
plot(cD1); title('Level-1 Detail Coefficients')
k1=kurtosis(cA1) %E.g of one parameter used to extract some features%Approximation%
k2=kurtosis(cD1) %details%
...
And other statistical parameters.
My extracted features, after being used as inputs for the ANN classifier, showed that approximations are better than details, and performed with a very high classification rate.
I haven't found a reason to reconstruct the signal or using any filters (i.e. Low and high filters)?!
MATLAB staff and experts, can you confirm my method or correct me please?
  댓글 수: 5
Rasheed Majeed
Rasheed Majeed 2021년 9월 15일
Dear Tubi
I think you have some error in subplot , Index must be a 3 -digit number of the format mnp
Rasheed Majeed
Rasheed Majeed 2021년 9월 16일
Sorry dear Tubi
Your expression for subplot is Correct .

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

답변 (1개)

Bernhard Suhm
Bernhard Suhm 2018년 3월 25일
You could try using wavelets, the basic documentation is here: https://www.mathworks.com/help/wavelet/ref/dwtfilterbank.wavelets.html. That requires the Wavelet toolbox though, which you could get via a trial.

카테고리

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