语音信号处理 Resources

Showing items tagged with "语音信号处理"

The enframe function and other essential utilities for MATLAB-based speech signal processing are not included in the standard MATLAB installation and require downloading specialized toolboxes. These toolboxes, available from official sources, can be directly extracted and installed. Installation procedures are widely documented online and easily accessible through search.

MATLAB 2287 views Tagged

This repository provides MATLAB toolbox source code for speech signal processing, offering excellent reference value with implementation examples covering fundamental operations and advanced algorithms including voice activity detection, feature extraction, and spectral analysis techniques.

MATLAB 296 views Tagged

Speech signal processing and speech recognition generally involve preprocessing, feature extraction, vectorization, and matching calculation stages. This guide explains how to implement filtering, framing, windowing, and endpoint detection on speech signals using MATLAB, with specific code examples and algorithm descriptions. Note: The Voicebox toolbox (available online) provides essential functions for comprehensive speech processing implementations.

MATLAB 338 views Tagged

Record your own voice signal and sample the recorded signal; plot the time-domain waveform and spectrogram of the sampled voice signal; design a filter using the window function method and bilinear transform based on specified filter performance requirements, and plot the filter's frequency response; apply the designed filter to process the acquired signal, plot the filtered signal's time-domain waveform and spectrum, compare pre- and post-filtering signals, and analyze signal changes; playback the voice signal; finally, design a signal processing system interface with integrated functions.

MATLAB 307 views Tagged

Linear Predictive Coding (LPC) is one of the most effective analysis methods in speech signal processing, enabling identification of pitch periods or formants through LPC spectrum and LPCC spectrum analysis combined with LPC detection methods. MATLAB implementation demonstrates simplicity in programming with excellent performance outcomes, utilizing key functions like lpc() for coefficient estimation and freqz() for spectral analysis.

MATLAB 410 views Tagged

MATLAB program for speech synthesis in speech signal processing, capable of extracting short-term energy and short-term zero-crossing rate from audio files. The implementation includes frame-based audio processing using windowing techniques and feature calculation algorithms.

MATLAB 356 views Tagged