预处理 Resources

Showing items tagged with "预处理"

This project implements speech recognition for passwords composed of digits 0-9 by calculating the cross-correlation function between two signals and their corresponding variance, using maximum variance as the discrimination threshold. Signal preprocessing is essential and includes FIR filter-based pre-emphasis and endpoint detection using short-term average energy and zero-crossing rate methods to extract useful signals. These preprocessing steps maximize recognition accuracy. The cross-correlation function, which quantifies signal similarity, helps differentiate test signals from template signals. In MATLAB implementation, key functions like xcorr() for cross-correlation calculation and var() for variance computation are utilized, while preprocessing involves designing FIR filters with fir1() and implementing energy/zcr-based endpoint detection algorithms.

MATLAB 288 views Tagged

Facial micro-expressions reveal crucial insights into human emotions, even when individuals attempt to conceal their feelings. Historically, limited research has been conducted on detecting and recognizing micro-expressions using computer vision techniques. This implementation processes spontaneous micro-expression databases through preprocessing and Haar feature-based image cropping, followed by feature extraction using Local Binary Patterns on Three Orthogonal Planes (LBP-TOP) and Local Gray-Coding Patterns on Three Orthogonal Planes (LGCP-TOP) descriptors. The system employs Support Vector Machines (SVM) for detection and classification, achieving accuracy comparable to existing state-of-the-art methods.

MATLAB 240 views Tagged