Difference between revisions of "Speech Recognition"

From RobotinoWiki
(Created page with '== Speech Recognition on Robotino == Robotino can now comprehend basic human speech commands.')
 
(Speech Recognition on Robotino)
Line 1: Line 1:
 
== Speech Recognition on Robotino ==
 
== Speech Recognition on Robotino ==
  
Robotino can now comprehend basic human speech commands.
+
Robotino can now comprehend basic human speech commands. Robotino uses the open source speech recognition engine called Julius.
 +
 
 +
== Setting up Speech Recognition ==
 +
 
 +
Setting up speech recognition is done in two parts. The first part involves training of the speech data and creation of the acoustic model and the second involves the actual execution of the speech recognition engine with the created acoustic model.
 +
 
 +
=== Creating an Acoustic Model ===
 +
 
 +
The HTK toolkit (version 3.4) shall be used to create an acoustic model. Please follow the following steps.
 +
 
 +
==== Step 1 ====
 +
You will need to [http://htk.eng.cam.ac.uk/register.shtml register] with HTK before you can download it. Please do so.
 +
==== Step 2 ====
 +
Download the sources for HTK toolkit 3.4 from [http://htk.eng.cam.ac.uk/ftp/software/HTK-3.4.tar.gz here].
 +
==== Step 3 ====
 +
# Move to your home directory <pre> cd ~ </pre>
 +
# Create a directory called bin <pre> mkdir bin </pre>

Revision as of 17:18, 8 February 2011

Speech Recognition on Robotino

Robotino can now comprehend basic human speech commands. Robotino uses the open source speech recognition engine called Julius.

Setting up Speech Recognition

Setting up speech recognition is done in two parts. The first part involves training of the speech data and creation of the acoustic model and the second involves the actual execution of the speech recognition engine with the created acoustic model.

Creating an Acoustic Model

The HTK toolkit (version 3.4) shall be used to create an acoustic model. Please follow the following steps.

Step 1

You will need to register with HTK before you can download it. Please do so.

Step 2

Download the sources for HTK toolkit 3.4 from here.

Step 3

  1. Move to your home directory
     cd ~ 
  2. Create a directory called bin
     mkdir bin