how to find LPC feature from speech to recognize human emotions in matlab? Please, can anyone help?

2 views (last 30 days)
Can anyone provide LPC feature extraction matlab algorithm or code for speech emotion recognition?

Answers (1)

Prasanna
Prasanna on 17 Sep 2024
Hi Divya,
It is my understanding that you want to perform LPC for feature extraction for speech processing and emotion recognition. To perform the same, you can follow the below given steps:
  • Load the speech signal using the ‘audioread’ function.
  • Apply a pre-emphasis filter to amplify the high frequencies of the signal
  • Frame the signal and divide it into overlapping frames to capture the temporal dynamics
  • Window each obtained frame using a Hamming window to reduce spectral leakage
  • Use the lpc’ function to compute the LPC coefficients for each frame.
For more information regarding the process, you can refer the following documentations:
Hope this helps!

Community Treasure Hunt

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

Start Hunting!