ocvolume
Class ocvolume

java.lang.Object
  |
  +--ocvolume.ocvolume

public class ocvolume
extends java.lang.Object

speech recognitione engine last updated on June 18, 2002


Constructor Summary
ocvolume(java.lang.String dict, java.lang.String folder)
          constructor to create a speech recognition engine using VQ for recognition
ocvolume(java.lang.String dict, java.lang.String pathForHMM, java.lang.String pathForCodebook)
          constructor to create a speech recognition engine using HMM for recognition
 
Method Summary
 java.lang.String getWord(short[] signal)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ocvolume

public ocvolume(java.lang.String dict,
                java.lang.String folder)
constructor to create a speech recognition engine using VQ for recognition

Parameters:
dict - file path of the dictionary file that contains all the words that the engine can recognize
folder - path of the folder where *.vq are located

ocvolume

public ocvolume(java.lang.String dict,
                java.lang.String pathForHMM,
                java.lang.String pathForCodebook)
constructor to create a speech recognition engine using HMM for recognition

Parameters:
dict - file path of the dictionary file that contains all the words that the engine can recognize
pathForHMM - path of the folder where *.hmm are located
pathForCodebook - file path of the codebook file that should be used for HMM
Method Detail

getWord

public java.lang.String getWord(short[] signal)