資源簡介
用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\blockfr
?????文件???????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個文件信息
- 上一篇:XUtils3的基本使用方法
- 下一篇:Unity3D UGUI源代碼源碼分享
評論
共有 條評論