资源简介

这个是一个基于神经网络的说话人识别程序,matlab的p程序,没有.m源代码

资源截图

代码片段和文件信息

% Copy all files in Matlab current directory and type “speakerann“ on
% Matlab command window.

%
%
%
% First select an input sound clicking on “Select sound“.
% Then you can
%   - add this sound to database (click on “Add selected sound to database“
%   - perform speaker recognition (click on “Speaker Recognition“ button)
%     Note: If you want to perform speaker recognition database has to include 
%     at least one sound.
%
% If you choose to add sound to database a positive integer (speaker ID) is
% required. This posivive integer is a progressive number which identifies
% a person (each person corresponds to a class).
% For example:
%  - run the GUI (type “speakerann“ on Matlab command window)
%  - delete database (click on “Delete Database“)
%  - add “mike1.jpg“ to database ---> the ID has to be 1 since Mike is the first
%    person you are adding to database
%  - add “mike2.jpg“ to database ---> the ID has to be 1 since you have already
%    added a Mike‘s sound to database
%  - add “paul1.jpg“ to database ---> the ID has to be 2 since Paul is the second person
%    you are adding to database
%  - add “cindy1.jpg“ to database ---> the ID has to be 3 since Cindy is
%    the third person you are adding to database
%  - add “paul2.jpg“ to database ---> the ID has to be 2 once again since
%    you have already added Paul to database
%   
% ... and so on! Very simple isnt‘t? :)

% The recognition gives as results the ID of nearest person present in
% database. For example if you select sound “paul3.jpg“ the ID gives 2 as
% result.
%
% FUNCTIONS
%
% Select sound:                                  read the input sound
%
% Add selected sound to database:                the input sound is added to database and will be used for training
%
% Database Info:                                 show informations about the sounds present in database. 
%
% Speaker Recognition:                           speaker matching. The selected input sound is processed
%
% Delete Database:                               remove database from the current directory
%
% Info:                                          show informations about this software
%
%
% Source code for Speaker Recognition System:    how to obtain the complete source code
%
% Exit:                                          quit program
%
%
%
%
%   This program is free software; you can redistribute it and/or modify
%   it under the terms of the GNU General Public License as published by
%   the Free Software Foundation; either version 2 of the License or
%   (at your option) any later version.
%
%   This program is distributed in the hope that it will be useful
%   but WITHOUT ANY WARRANTY; without even the implied warranty of
%   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
%   GNU General Public License for more details.
%
%   You can obtain a copy of the GNU General Public License from
%   ftp://prep.ai.mit.

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件        1830  2006-07-12 11:30  enframe.p
     文件        2816  2006-07-12 11:30  findvoice.p
     文件        6067  2006-07-12 11:30  melbankm.p
     文件        9311  2006-07-12 11:30  melcepst.p
     文件        4206  2006-07-12 11:30  prova.p
     文件        2651  2006-07-12 11:30  rdct.p
     文件         126  2006-07-12 11:30  readme.p
     文件        2059  2006-07-12 11:30  rfft.p
     文件         126  2006-07-12 11:30  sourcecode.p
     文件       23348  2006-07-12 11:30  speakerann.p
     文件       25132  1999-06-09 20:46  test\s1.wav
     文件       98044  2005-12-08 19:35  test\s10.wav
     文件      104044  2005-12-08 19:36  test\s11.wav
     文件       28204  1999-06-09 20:46  test\s2.wav
     文件       37932  1999-06-09 20:46  test\s3.wav
     文件       31788  1999-06-09 20:46  test\s4.wav
     文件       32812  1999-06-09 20:46  test\s5.wav
     文件       33836  1999-06-09 20:46  test\s6.wav
     文件       29228  1999-06-09 20:46  test\s7.wav
     文件       28716  1999-06-09 20:46  test\s8.wav
     文件       96544  2005-12-08 19:35  test\s9.wav
     目录           0  2006-07-12 11:29  test\
     文件       26156  1999-06-09 20:45  train\s1.wav
     文件      111044  2005-12-08 19:36  train\s10.wav
     文件       82544  2005-12-08 19:36  train\s11.wav
     文件       27180  1999-06-09 20:45  train\s2.wav
     文件       26668  1999-06-09 20:45  train\s3.wav
     文件       29740  1999-06-09 20:45  train\s4.wav
     文件       36396  1999-06-09 20:45  train\s5.wav
     文件       29740  1999-06-09 20:45  train\s6.wav
     文件       28716  1999-06-09 20:45  train\s7.wav
............此处省略6个文件信息

评论

共有 条评论