资源简介
这是一个说话人识别matlab源代码,有两个特征可以选择MFCC和SBC,模式匹配使用了GMM。测试了80人的数据库,MFCC识别正确率为80%,SBC为40%左右
代码片段和文件信息
function varargout = About(varargin)
% ABOUT M-file for About.fig
% ABOUT by itself creates a new ABOUT or raises the existing
% singleton*.
%
% H = ABOUT returns the handle to a new ABOUT or the handle to
% the existing singleton*.
%
% ABOUT(‘CALLBACK‘hobjecteventDatahandles...) calls the local
% function named CALLBACK in ABOUT.M with the given input arguments.
%
% ABOUT(‘Property‘‘Value‘...) creates a new ABOUT or raises the
% existing singleton*. Starting from the left property value pairs are
% applied to the GUI before About_OpeningFunction gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to About_OpeningFcn via varargin.
%
% *See GUI Options on GUIDE‘s Tools menu. Choose “GUI allows only one
% instance to run (singleton)“.
%
% See also: GUIDE GUIDATA GUIHANDLES
% Copyright 2002-2003 The MathWorks Inc.
% Edit the above text to modify the response to help About
% Last Modified by GUIDE v2.5 25-Mar-2002 12:19:15
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct(‘gui_Name‘ mfilename ...
‘gui_Singleton‘ gui_Singleton ...
‘gui_OpeningFcn‘ @About_OpeningFcn ...
‘gui_OutputFcn‘ @About_OutputFcn ...
‘gui_LayoutFcn‘ [] ...
‘gui_Callback‘ []);
if nargin && ischar(varargin{1})
gui_State.gui_Callback = str2func(varargin{1});
end
if nargout
[varargout{1:nargout}] = gui_mainfcn(gui_State varargin{:});
else
gui_mainfcn(gui_State varargin{:});
end
% End initialization code - DO NOT EDIT
% --- Executes just before About is made visible.
function About_OpeningFcn(hobject eventdata handles varargin)
% This function has no output args see OutputFcn.
% hobject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% varargin command line arguments to About (see VARARGIN)
% Choose default command line output for About
handles.output = hobject;
% Update handles structure
guidata(hobject handles);
% UIWAIT makes About wait for user response (see UIRESUME)
% uiwait(handles.figure1);
% --- Outputs from this function are returned to the command line.
function varargout = About_OutputFcn(hobject eventdata handles)
% varargout cell array for returning output args (see VARARGOUT);
% hobject handle to figure
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Get default command line output from handles structure
varargout{1} = handles.output;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1330 2010-03-25 14:37 license.txt
目录 0 2010-03-24 00:49 sharks_1.0\
文件 2321 2008-05-17 16:37 sharks_1.0\About.fig
文件 2853 2008-05-17 16:25 sharks_1.0\About.m
文件 316 2008-06-19 21:42 sharks_1.0\config.mat
文件 4632 2008-02-21 23:15 sharks_1.0\Databa
文件 3235 2008-02-25 23:18 sharks_1.0\Databa
文件 6364 2002-06-09 05:09 sharks_1.0\datagrid.m
文件 1351 2002-06-09 05:09 sharks_1.0\datagrid_cb.m
文件 1952 2008-05-12 01:57 sharks_1.0\db_manage.fig
文件 7647 2008-05-12 01:57 sharks_1.0\db_manage.m
文件 97 2008-01-21 01:11 sharks_1.0\en.m
文件 457 2008-05-13 01:31 sharks_1.0\enfr
文件 2937 2008-05-14 15:55 sharks_1.0\gmm_estimate.m
文件 848 2007-06-14 16:26 sharks_1.0\graph_gmm.m
文件 27256 2008-02-17 22:32 sharks_1.0\gui.fig
文件 15437 2008-05-18 17:35 sharks_1.0\gui.m
文件 254 2007-06-14 16:26 sharks_1.0\histn.m
文件 911 2008-01-26 18:27 sharks_1.0\init_sound.m
文件 253 2008-02-19 00:58 sharks_1.0\isodd.m
文件 926 2008-05-14 15:44 sharks_1.0\lmultigauss.m
文件 1173 2007-06-14 16:26 sharks_1.0\lsum.m
文件 125 2008-05-13 01:31 sharks_1.0\mel2frq.m
文件 718 2008-05-14 15:48 sharks_1.0\melbankm.m
文件 613 2008-05-19 14:05 sharks_1.0\melcepst.m
文件 4952 2008-05-18 17:50 sharks_1.0\MFCC_feature.mat
文件 621 2008-02-19 22:22 sharks_1.0\MFCC_feature_compare.m
文件 660 2008-05-14 15:50 sharks_1.0\MFCC_feat_inject.m
文件 1018 2007-06-14 16:26 sharks_1.0\multigauss.m
文件 463 2008-05-13 01:30 sharks_1.0\rdct.m
文件 2695 2008-05-18 16:13 sharks_1.0\result.fig
............此处省略12个文件信息
评论
共有 条评论