Go To English Version 超过100万源码资源,1000万源码文件免费下载
  • MatlabFiles.rar ... level. The recognition time is dependent on systems s processing power and has been observed at between 1 and 5 seconds on various x86 platforms. To speed up recognition, you can implement unconstrained DTW (this is the code portion taking most time).
  • speechreco.rar 语音识别里面的DTW算法,希望对学习语音识别的同学有帮助。这个是matlab程序
  • dtwhmm.doc.rar 两种不同的语音识别算法---动态时间伸缩算法(DTW)和隐马尔科夫模型(HMM),.doc
  • p_matlab_2oparcial.zip A bad MATLAB data for the algorithm as a DTW model. It can′t recognise the number of 0-9. Do not try it, just do not run testdtw.
  • petitchien.zip code dtw for speech recognition
  • dtw.rar Dynamic time wrapping algorithm
  • dtw_speech_reco.rar 基于DTW的孤立词语音识别,具有很高的识别率,代码为c语言
  • testdtw(zhu).rar 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 end 累积 ...
  • dtw.rar 语音识别动态时间归正全过程的matlab程序,运行测试能出结果,希望对你们有用,实在没点数才把自己压箱底的东西拿出来,呜呜
  • mydtw.rar 基于MFCC算法建立的参数模型,然后用DTW算法进行模型匹配,从而实现语音识别的作用~