资源列表
H2Mtoolbox.rar
- 此工具箱里面有关于HMM、VQ、SVQ算法的原代码,可以方面的被调用。,H2M tool box is a advantageous tool box.there are HMM\VQ\svq and orther uesful algorithms.
HTK.rar
- htk函数架构,说明了htk中函数的调用关系,htk function structure, described in the function call htk relations
jin0530.rar
- 做毕业设计编写的基于谱熵端点检测的程序,欢迎分享,Designed to prepare graduates to do spectral entropy-based endpoint detection process, please share
AGC.rar
- Automatic Gain Control,Automatic Gain Control
wave.rar
- 语音采集程序,能够采集语音生成wav文件,能够实现录音,暂停,播放功能,还能够显示语音波形,Voice collection procedures to collect voice generated wav files, to achieve record, pause, play function, can also display audio waveforms
endpoint
- 这是一段关于语音处理与识别的程序,包括预处理,端点检测,线性倒谱系数求解,并运用dtw算法进行模式匹配。-This is a speech processing and recognition on the program, including pretreatment, endpoint detection, linear cepstrum solution, and the use of dtw algorithm for pattern matching.
GPSVoice_1
- 语音机动, 语 音 识 别 功 能-Mobile voice, voice recognition
FluorineFx_Flex_video_chat
- 语音视频会议bate1测试需改动希望大家积极响应以后大家都拿flex或者sliverlight做语音视频会议-Voice and video conference test will be changed bate1 hope we all get a positive response after the flex or do voice and video conference sliverlight
WinHTK-voice-recognition
- 85375552WinHTK著名语音识别程序-85375552WinHTK well-known speech recognition program
microsoft-speech-sdk
- 语音识别开发必备学习资料 包括 语音识别 和 语音合成两部分-Voice recognition develop essential learning materials
Mistral_Platform
- 利用alize库实现的语音识别程序,很好很强大-Alize library implementation using speech recognition program, very good very strong
testdtw(zhu)
- function dist = dtw(t,r) n = size(t,1) m = size(r,1) 帧匹配距离矩阵 d = zeros(n,m) for i = 1:n for j = 1:m d(i,j) = sum((t(i,:)-r(j,:)).^2) end 累积距离矩阵 D = ones(n,m) * realmax D(1,1) = d(1,1) 动态规划 for i = 2:n