Answered problem with speech recognition

  • Tuesday, July 19, 2011 12:25 PM
     
     

    Hi,

    I am using Speech Recognition and Body tracking parallely using kinect, while kinect monitors the tracking, speech recognizer takes some words of speech as input automatically without any utterances from the user and interrupts the tracking, please explain how to avoid this.

     

    Thanks,

    Bharat.

All Replies

  • Tuesday, July 19, 2011 9:31 PM
     
     Answered

    Speech recognition can be CPU intensive, and it might be keeping your tracking code from running on a timely basis. And recognition depends on analyzing incoming sounds, so you pay for it whether or not anything is recognized as a command.

    I'd start by making sure that I'm doing the two tasks on separate threads, so I could use multiple cores where available.