语音信号 Resources

Showing items tagged with "语音信号"

This simple, compact MATLAB code implements speech recognition by comparing input audio signals with pre-stored voice templates; if a successful match occurs, an "access granted" signal is generated, otherwise an "access denied" signal is produced.

MATLAB 286 views Tagged

Short-term analysis of speech signals includes key components such as frame splitting, short-term energy, short-term average magnitude, short-term zero-crossing rate, short-term autocorrelation function, short-term magnitude difference, cepstrum, complex cepstrum, LPC coefficients, and LPC spectral estimation. These fundamental programs assigned by my supervisor after securing postgraduate admission ensure absolute quality through robust implementation.

MATLAB 314 views Tagged

Speech signals are time-varying in nature, with individual parameter variations occurring more gradually than the signal itself. Consequently, measuring these parameters requires a significantly lower sampling frequency compared to the signal's original sampling rate. Through window function weighting, the signal is segmented in the time domain into local signal sequences for measurement. Proper short-time analysis requires defining two key dimensions: window length (duration of the weighted signal segment) and measurement interval (frame rate, representing the spacing between consecutive windows). Core short-time analysis operations include short-time energy (reflecting amplitude variations), short-time autocorrelation function (detecting periodicity), and short-time zero-crossing rate.

MATLAB 274 views Tagged

This is the latest program code for blind source separation of speech signals in real environments, implementing Independent Component Analysis (ICA) for speech signal processing. After extraction, simply run the program with recorded mixed speech signals as input to observe the separation results. The code employs advanced ICA algorithms to extract independent components from mixed audio sources.

MATLAB 267 views Tagged

Implementation of Linear Predictive Coding for speech signals, featuring a main program that orchestrates four subprograms handling prediction analysis, quantization, encoding, and decoding functionalities.

MATLAB 308 views Tagged