What "Window" value or size mean when using the audioFeatureExtractor function

2 ビュー (過去 30 日間)
Ibrahim A
Ibrahim A 2022 年 11 月 3 日
コメント済み: Ibrahim A 2022 年 11 月 3 日
When I am trying to use the audioFeatureExtractor function to extract features from an audion. I need to define the property "Window". The defult value is "hamming(1024,"periodic")".
I am trying to undersnad what 1024 means? Does it mean taking the first 1024 ms of the audion and extracting the features from it ?
Thank you

採用された回答

jibrahim
jibrahim 2022 年 11 月 3 日
Feature extraction operates along windows of audioIn: You first take the first 1024 samples of audioIn and process them, then you take the next 1024 samples, and so on. OverlapLength determines how many samples overlap between consecutive windows. To figure out how long the window is in seconds, use SampleRate. In your case, a window lasts for 1024/SampleRate seconds.
This is explained in the Algorithm section in the audioFeatureExtraxctor documentation.
  1 件のコメント
Ibrahim A
Ibrahim A 2022 年 11 月 3 日
Thank you so much for the answer. You just made my day :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMultirate Signal Processing についてさらに検索

製品


リリース

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by