C# 语音识别
在哪里可以找到 C# 语音识别命名空间的参考资料和完整文档。 MSDN 只提供了对成员的非常简短的描述,我所能找到的没有更多内容。对于这类事情是否有绝对的资源?我学到的大部分内容都来自论坛中的其他教程或片段。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
在哪里可以找到 C# 语音识别命名空间的参考资料和完整文档。 MSDN 只提供了对成员的非常简短的描述,我所能找到的没有更多内容。对于这类事情是否有绝对的资源?我学到的大部分内容都来自论坛中的其他教程或片段。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
简介:语音识别
涵盖大部分基础知识的代码示例:
语音入门认可
Intro: Speech Recognition
Code examples covering most of the basics:
Getting Started with Speech Recognition
我发现关于 .NET 4 的 System.Speech.Recognition 的最新 MSDN 页面在细节上很少,但 .NET 3.5 的旧页面有更多细节。为了快速比较,我刚刚抓住了这两页:
与
.NET 3.5 文档详细介绍了评论和例子。 .NET 4.0 版本只有定义。
我发现服务器语音平台 SDK 附带的帮助文件包含 .NET 4.0 MSDN 页面遗漏的详细信息 - http://www.microsoft.com/downloads/en/details.aspx?FamilyID=1b1604d3-4f66-4241-9a21-90a294a5c9a4。
要开始使用 .NET 语音,有一篇几年前发表的非常好的文章,网址为 http://msdn.microsoft.com/en-us/magazine/cc163663.aspx。这可能是迄今为止我发现的最好的介绍性文章。它有点过时,但非常有帮助。 (AppendResultKeyValue 方法在测试版和可能的其他重大更改之后被删除。)
I found that the latest MSDN pages on System.Speech.Recognition for .NET 4 are skimpy on the details, but the older pages for .NET 3.5 have more details. For a quick comparison I just grabbed these two pages:
vs.
The .NET 3.5 docs have detailed remarks and examples. The .NET 4.0 versions just have definitions.
I found the helpfile that comes with the Server Speech Platform SDK has details that the .NET 4.0 MSDN pages leave off - http://www.microsoft.com/downloads/en/details.aspx?FamilyID=1b1604d3-4f66-4241-9a21-90a294a5c9a4.
To get started with .NET speech, there is a very good article that was published a few years ago at http://msdn.microsoft.com/en-us/magazine/cc163663.aspx. It is probably the best introductory article I’ve found so far. It is a little out of date, but very helfpul. (The AppendResultKeyValue method was dropped after the beta and likely other breaking changes.)
首先,添加语音识别库。
如果无法加载库,可以使用添加引用来添加。
去
一般来说,System.Speech.dll位于 C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0
这里,识别“Yes”的示例代码,”无”、“入”、“出”如下:
Firstly, you add the library for Speech Recognition.
If you cannot load the library, you can add it by using add reference.
Go
Generally, System.Speech.dll is in C:\Program Files\Reference Assemblies\Microsoft\Framework\v3.0
Here, the example code that recognizes "Yes","No","In","Out" is below: