搜索资源列表
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
fingerprint
- Type Classification Code: main.m (program control) discretize.m (converts image to discrete values) plotimg.m (plots images) dirImg.m (computes the directional image) extract.m (extracts square portion of image - called by di
LMS
- LMS算法实现自适应滤波 clear close all clc N=10000 设置仿真长度 信号产生参数设定 a1=-0.195 a1=-1.5955 a2=0.95 R0=[1,a1,a2 a1,1+a2,0 a2,a1,1] p=[1,0,0] r=inv(R0)*p 计算理论自相关函数 R=[r(1),r(2) r(2),r(1)] 生成理论自相关矩阵 p1=[r(2),r(3)] 生成互相关 h=inv(R)
dtw
- 本系统是一个在多媒体PC 上实现的孤立词识别系统, 它提取语音的线性预测系数作为特征参数, 并采用Itaku ra 失真测度计算帧间距离, 在识别上则使用了动态时轴弯曲(DTW ) 进行时间匹配。本系统对一般的DTW 法作了改进, 即通过放宽端点限制以得到更好的语音匹配, 克服了一般DTW 法要求语音首尾严格对齐而造成的弊病, 降低了语音端点检测的精度要求。-This system is implemented on a multimedia PC isolated word recogniti
filterbank
- 此代码是语音信号处理中使用短时综合的滤波器组相加法进行语音的合成。-This code is speech signal processing is performed using synthesized speech synthesis filter bank short-sum method.
filterbank1
- 短时综合的滤波器组相加法的matlab程序的实现,使用的是先调制后滤波的方法-Synthesis filter bank to achieve short-sum method matlab program, using a filter after the first modulation method