Software Archive
Read-only legacy content
17061 Discussions

Speech Recognition: Old Perceptual Computing SDK to RealSense

Giuseppe_F_
Beginner
829 Views

Hello!

With the old library could analyze the audio sample created adhoc by the  component PXCMVoiceRecognition.

This is a fragment of code that I used  with Old Perceptual Computing SDK to process the audio sample: 

                    //Create a PXCMAudio from byte array
                    PXCMAudio sample = createAudioFrame(Buffer);
                    PXCMScheduler.SyncPoint sp;
                    
                    //rec is a PXCMVoiceRecognition
                    pxcmStatus status = rec.ProcessAudioAsync(sample, out sp);//This function no longer exists

                    if (status >= pxcmStatus.PXCM_STATUS_NO_ERROR)
                    {
                        sp.Synchronize();
                        sp.Dispose();
                    }

                    // Dispose
                    sample.Dispose();

There is a way to get the same result with the new RealSense SDK?

0 Kudos
3 Replies
Colleen_C_Intel
Employee
829 Views

you might look at 

/Intel/RSSDK/doc/HTML/index.html?manuals_speech_recognition_procedure.html

0 Kudos
Giuseppe_F_
Beginner
829 Views

I'm sorry, but I can not access the link above. You can write the whole url?

0 Kudos
Colleen_C_Intel
Employee
829 Views

Sorry - it's not a URL, it's a file reference to wherever you unpacked the Real Sense SDK. (Or just do a search for that doc) after unpacking the SDK.

0 Kudos
Reply