• 大小: 2.34MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-26
  • 语言: 其他
  • 标签: HMM  语音识别  

资源简介

用HMM进行语音识别代码,说话人识别系统,界面友好,可以对实时录音的说话人进行识别

资源截图

代码片段和文件信息

function M3 = blockframes(s fs m n)
% blockframes: Puts the signal into frames
%
% Inputs: s contains the signal to analize
% fs is the sampling rate of the signal
% m is the distance between the beginnings of two frames
% n is the number of samples per frame
%
% Output: M3 is a matrix containing all the frames
%
%
%%%%%%%%%%%%%%%%%%
% Mini-Project: An automatic speaker recognition system
%
% Responsible: Vladan Velisavljevic
% Authors: Christian Cornaz
% Urs Hunkeler
l = length(s);
nbframe = floor((l - n) / m) + 1;
for i = 1:n
for j = 1:nbframe
M(i j) = s(((j - 1) * m) + i);
end
end
h = hamming(n);
M2 = diag(h) * M;
for i = 1:nbframe
M3(: i) = fft(M2(: i));
end

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        704  2004-04-30 22:35  speaker_recognition\blockframes.m

     文件       3781  2006-05-23 21:31  speaker_recognition\demo1.m

     文件        771  2004-04-16 13:38  speaker_recognition\disteu.m

     文件       1333  2004-04-16 13:38  speaker_recognition\melfb.m

     文件       1103  2007-05-04 15:44  speaker_recognition\mfcc.m

     文件        932  2007-04-29 16:57  speaker_recognition\readme.txt

     文件       1349  2007-05-06 21:54  speaker_recognition\test.m

     文件       1517  2007-05-08 16:34  speaker_recognition\train.m

     文件       1073  2007-04-29 20:16  speaker_recognition\vqlbg.m

     文件        479  2007-05-08 16:34  speaker_recognition\mytest.m

     文件        231  2007-05-06 17:01  speaker_recognition\exp.txt

     文件       1728  2007-05-05 18:38  speaker_recognition\vad.m

     文件        478  2007-05-08 17:42  speaker_recognition\mytest.asv

     文件       4301  2007-05-04 11:03  speaker_recognition\ENDPOINT.M

     文件       1242  2004-11-06 20:38  speaker_recognition\ABDTW.M

     文件       1219  2004-11-06 20:38  speaker_recognition\ABFEATUR.M

     文件       1319  2004-11-06 20:38  speaker_recognition\ABHMM.M

     文件       1225  2004-11-06 20:38  speaker_recognition\ABPREPRO.M

     文件       1341  2004-11-06 20:38  speaker_recognition\ABVQ.M

     文件        567  2004-11-06 20:38  speaker_recognition\AVGMAG.M

     文件        872  2004-11-06 20:38  speaker_recognition\BACKWARD.M

     文件       8676  2004-11-06 20:38  speaker_recognition\BACKWARD.MEX

     文件       9152  2004-11-06 20:38  speaker_recognition\BAUMWELC.MEX

     文件       1532  2004-11-06 20:38  speaker_recognition\BAUMWLCH.M

     文件        766  2004-11-06 20:38  speaker_recognition\CEPCOEFF.M

     文件        906  2004-11-06 20:38  speaker_recognition\CEPFEA.M

     文件        407  2004-11-06 20:38  speaker_recognition\compareEndpoint.m

     文件       1453  2004-11-06 20:38  speaker_recognition\comparefeaplot1.m

     文件       1468  2004-11-06 20:38  speaker_recognition\comparefeaplot2.m

     文件       1452  2004-11-06 20:38  speaker_recognition\comparefeaplot3.m

............此处省略295个文件信息

评论

共有 条评论