Reputation: 575
Can I integrate speech recognition with C#? I want to develop an application that would recognize our dialect. I'm still collecting audio files to make it speaker independent.
Upvotes: 0
Views: 706
Reputation: 10906
Writing a speech-recognition system is a VERY complex topic and many papers have been written on the subject. Here are some nice introductory papers:
While the above papers deal with the basics of spectral modeling, feature vector extraction, clustering and data-mapping, my pet approaches to such complex classification problems have always been neural network based. Here are a set of papers that deal with different NN based approaches:
I would advise you to start small and build the system in little steps. Good luck!
Just out of curiosity - what language do you need to support?
Upvotes: 1
Reputation: 54137
Have you tried the Microsoft Speech API? MSDN includes a C# getting started tutorial.
Upvotes: 1