function varargout = gui(varargin)
% GUI MATLAB code for gui.fig
% GUI, by itself, creates a new GUI or raises the existing
% singleton*.
%
% H = GUI returns the handle to a new GUI or the handle to
% the existing singleton*.
%
% GUI('CALLBACK',hObject,eventData,handles,...) calls the local
% function named CALLBACK in GUI.M with the given input arguments.
%
% GUI('Property','Value',...) creates a new GUI or raises the
% existing singleton*. Starting from the left, property value pairs are
% applied to the GUI before gui_OpeningFcn gets called. An
% unrecognized property name or invalid value makes property application
% stop. All inputs are passed to gui_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
% Edit the above text to modify the response to help gui
% Last Modified by GUIDE v2.5 06-Sep-2018 20:35:26
% Begin initialization code - DO NOT EDIT
gui_Singleton = 1;
gui_State = struct('gui_Name', mfilename, ...
'gui_Singleton', gui_Singleton, ...
'gui_OpeningFcn', @gui_OpeningFcn, ...
'gui_OutputFcn', @gui_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 gui is made visible.
function gui_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 gui (see VARARGIN)
% Choose default command line output for gui
handles.output = hObject;
%%%%%%%%%%%default_config
handles.recObj = audiorecorder(44100, 16, 1, -1);
handles.recObj.TimerFcn = {@RecDisplay, handles};
handles.recObj.TimerPeriod=0.25;
handles.playSpeed=1;
%%%%%%%%%%%icon
icon_start = imread('./icon/start.png') ;
icon_start = imresize(icon_start, 0.5) ;
set(handles.start,'CDATA',icon_start) ;
icon_play = imread('./icon/play.png') ;
icon_play = imresize(icon_play, 0.5) ;
set(handles.play,'CDATA',icon_play);
icon_stop = imread('./icon/stop.png');
icon_stop = imresize(icon_stop, 0.5);
set(handles.stop, 'CDATA', icon_stop);
%%%%%%%%%%%switch
set(handles.stop, 'Enable', 'off');
set(handles.start, 'Enable', 'off');
set(handles.play, 'Enable', 'off');
%%%%%%%%%%%load lstm model
load('.\model6362.mat') ;
handles.net = net;
% Update handles structure
guidata(hObject, handles);
% --- Outputs from this function are returned to the command line.
function varargout = gui_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;
% --- Executes on button press in select.
function select_Callback(hObject, eventdata, handles)
% hObject handle to select (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
[filename, pathname] = uigetfile('.wav', '请选择音频(仅支持wav格式)');
%handles.fpath = [filename, pathname] ;
handles.wav = audioread([pathname filename], 'native')
handles.info = audioinfo([pathname filename])
%set(handels.play, 'Enable', 'on') ;
guidata(hObject, handles) ;
% --- Executes on button press in record.
function record_Callback(hObject, eventdata, handles)
% hObject handle to record (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
set(handles.start, 'Enable', 'on');
set(handles.stop, 'Enable', 'on');
set(handles.play, 'Enable', 'on');
guidata(hObject, handles);
% --- Executes on button press in recongizate.
function recongizate_Callback(hObject, eventdata, handles)
% hObject handle to recongizate (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
handles.wav = myVAD(handles.wav) ;
handles.info.Duration = double(length(handles.wav)/handles.info.SampleRate) ;
featVec = fbank(handles.wav, handles.info) ;
handles.result = classify(handles.net, featVec')
guidata(hObject, handles) ;
set(handles.edit1, 'string', sprintf('识别结果为%s',handles.result)) ;
% --- Executes on button press in start.
function start_Callback(hObject, eventdata, handles)
% hObject handle to start (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
set(handles.edit1, 'string', '录音中...')
record(handles.recObj) ;
% --- Executes on button press in play.
function play_Callback(hObject, eventdata, handles)
% hObject handle to play (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
handles.myRecording = getaudiodata(handles.recObj) ;
handles.playObj = audioplayer(handles.myRecording,handles.playSpeed*handles.recObj.SampleRate) ;
play(handles.playObj) ;
plot(handles.axes1,(1:length(handles.myRecording))/handles.recObj.SampleRate,handles.myRecording,'color','g')
guidata(hObject, handles) ;
% --- Executes on button press in stop.
function stop_Callback(hObject, eventdata, handles)
% hObject handle to stop (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
stop(handles.recObj)
handles.wav = getaudiodata(handles.recObj) ;
handles.info.Duration = handles.recObj.TimerPeriod ;
handles.info.SampleRate = handles.recObj.SampleRate ;
guidata(hObject, handles) ;
function RecDisplay(hObject, eventdata,handles)
%handles
handles.wav = getaudiodata(handles.recObj) ;
%axes(handles.axes1)
plot(handles.axes1, (1:length(handles.wav))/handles.recObj.SampleRate, handles.wav, 'color', 'g')
drawnow ;
function edit1_Callback(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles structure with handles and user data (see GUIDATA)
% Hints: get(hObject,'String') returns contents of edit1 as text
% str2double(get(hObject,'String')) returns contents of edit1 as a double
% --- Executes during object creation, after setting all properties.
function edit1_CreateFcn(hObject, eventdata, handles)
% hObject handle to edit1 (see GCBO)
% eventdata reserved - to be defined in a future version of MATLAB
% handles empty - handles not created until after all CreateFcns called
% Hint: edit controls usually have a white background on Windows.
% See ISPC and COMPUTER.
if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
set(hObject,'BackgroundColor','white');
end
没有合适的资源?快使用搜索试试~ 我知道了~
温馨提示
毕设项目-基于lstm的阿拉伯数字中文语音识别Matlab源码+GUI界面.zip 【资源介绍】 依赖项 matlab2017 算法流程 vad预处理剪切无效帧,fbank提取40维特征后用lstm训练 训练 运行train.m 【备注】主要针对正在做毕设的同学和需要项目实战的深度学习、matlab、cv图像识别模式识别方向学习者。 也可作为课程设计、期末大作业。包含:项目源码和项目操作说明等,该项目可直接作为毕设使用。 也可以用来学习、参考、借鉴。
资源推荐
资源详情
资源评论
收起资源包目录
毕设项目-基于lstm的阿拉伯数字中文语音识别Matlab源码+GUI界面.zip (22个子文件)
myVAD.m 5KB
vad.m 2KB
train.m 4KB
fbank.m 4KB
gui.fig 25KB
项目使用说明.md 218B
icon
bofanglv.png 9KB
tingzhi.png 9KB
stop.png 9KB
Browse.plb 38KB
bofanglan.png 9KB
zanting.png 7KB
stop_off.png 7KB
start_off.png 9KB
luyin.png 11KB
xiaohui.png 14KB
play.png 9KB
play_off.png 8KB
start.png 11KB
demo.png 62KB
gui.m 7KB
mfcc.m 5KB
共 22 条
- 1
资源评论
- icwx_75505922024-04-01感谢资源主分享的资源解决了我当下的问题,非常有用的资源。
- fpga_s2024-03-09资源很赞,希望多一些这类资源。manylinux2024-03-26嗯嗯,好的
- m0_684757472024-03-06感谢大佬分享的资源给了我灵感,果断支持!感谢分享~manylinux2024-03-26支持感谢
- weixin_439060672023-10-11资源和描述一致,质量不错,解决了我的问题,感谢资源主。manylinux2024-03-26不客气~
manylinux
- 粉丝: 4313
- 资源: 2491
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- java毕业设计-基于SSM框架的传统服饰文化体验平台【代码+部署教程】
- 优化领域的模拟退火算法详解与实战
- NewFileTime-x64.zip.fgpg
- 基于Python和HTML的Chinese-estate-helper房地产爬虫及可视化设计源码
- 基于SpringBoot2.7.7的当当书城Java后端设计源码
- 基于Python和Go语言的开发工具集成与验证设计源码
- 基于Python与JavaScript的国内供应商管理系统设计源码
- aspose.words-20.12-jdk17
- 基于czsc库的Python时间序列分析设计源码
- 基于Java、CSS、JavaScript、HTML的跨语言智联平台设计源码
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功