-
-
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).
-
-
-
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.
-
-
dtw.rar
Dynamic time wrapping algorithm
-
-
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算法进行模型匹配,从而实现语音识别的作用~
-