.net 中的语音识别。狮身人面像、ISIP、朱利叶斯
我想在用 C# 编写的应用程序中实现语音识别功能。 System.Speech.Recognition 不适合,因为它支持的语言数量不够。
我找到了几个引擎,但它们不是用 .net 编写的,而且我找不到任何包装器。那么,该使用哪一个:Sphinx、ISIP、Julius?您知道它们的 .net 包装吗?您知道有哪些教程或文章可以提供帮助吗?
提前致谢
I want to implement a voice recognition feature in my application written in c#. System.Speech.Recognition is not suitable, because the number of languages it supports is not enough.
I have found several engines, but they aren't written in .net and I can't find any wrappers. So, which one to use: Sphinx, ISIP, Julius? Do you know any .net wrappers for them? Do you know any tutorials or articles that can help?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要听写语法吗?缺少哪些语言?该程序必须在哪些版本的 Windows 上运行?
我不知道 Windows 7 下 System.Speech 支持的所有语言,但这些链接看起来很有帮助
如果您不需要听写语法,可以尝试 Microsoft.Speech和服务器识别器。支持 26 种语言:
http://www.microsoft.com。 com/downloads/en/details.aspx?FamilyID=47FFD4E5-E682-4228-8058-DD895252A3C3
请参阅System.Speech.Recognition 和 Microsoft.Speech.Recognition 之间有什么区别? 这可能有一些有用的背景知识。
Do you require a dictation grammar? What languages are missing? What versions of Windows must this run on?
I don't know all of the languages supported by System.Speech under Windows 7, but these links look helpful
If you don't need a dictation grammar, you can try Microsoft.Speech and the server recognizers. there are 26 languages supported:
http://www.microsoft.com/downloads/en/details.aspx?FamilyID=47FFD4E5-E682-4228-8058-DD895252A3C3
See What is the difference between System.Speech.Recognition and Microsoft.Speech.Recognition? which may have some helpful background.