From: YADUNANDAN N. <yad...@at...> - 2002-11-03 00:26:46
|
Hi All, I am trying to get the speech recognition engine to recognize speech. I am unable to get the following basic example working. Could someone help me in setup up the TCL/SMPI interface so that it can recognize speech and print the recognized word to tcl wish console? Note that this is the only speech related application running. Thanks a lot and regards, yadu proc CreateSpeechObject {} { smOpen smapi smapi::smConnect -recognize true #Specify typical Vocabulary smapi::smVocab enable text smapi::smRecognize smapi::smCallback recognizedWord { puts [smapi::getFirmWords] } } |