Readme

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 2

% Unzip all files in Matlab current directory, then type "speechrecognition"

% on Matlab command window. A simple and intuitive GUI should appear.


%
% GUI FUNCTIONS
%
% ADD A NEW SOUND FROM FILES
% Select a sound file from disk with mouse. An integer ID is required. Each word is
% associated to its ID. Sound file is added to database.
%
% ADD A NEW SOUND FROM MICROPHONE
% Select a sound file using microphone. An integer ID is required. Each word is
% associated to its ID. Sound file is added to database.
%
% SPEECH RECOGNITION FROM FILE
% Select a sound file from disk with mouse. Sound file will be compared with all
sounds present in
% database. Code returns the ID of recognized sound.
%
% SPEECH RECOGNITION FROM MICROPHONE
% Select a sound file using microphone. Sound file will be compared with all sounds
present in
% database. Code returns the ID of recognized sound.
%
% LOAD A SOUND FROM FILE FOR LISTENING
% Select a sound file from disk with mouse. Selected sound is played.
%
% LOAD A SOUND FROM MICROPHONE FOR LISTENING
% Select a sound file using microphone. Selected sound is played.
%
% DATABASE INFO
% Show all sounds present in database and the corresponding IDs.
%
% DELETE DATABASE
% Remove database from disk and all saved sounds.
%
% PROGRAM INFO
% How to run code. This file is visualized.
%
% HOW TO OBTAIN SOURCE CODE
% How to obtain source code.
%
% EXIT
% Exit GUI.
%
%
% NEURAL NETWORK SPEECH RECOGNITION SYSTEM
%
% In order to obtain the complete source code please visit
%
% http://www.advancedsourcecode.com/neuralspeech.asp
%
% For any question please email me luigi.rosa@tiscali.it
%
% Luigi Rosa
% Via Centrale 35
% 67042 Civita di Bagno
% L'Aquila - ITALY
% email luigi.rosa@tiscali.it
% mobile +39 3207214179
% website http://www.advancedsourcecode.com
%

You might also like