如何使用 MS SAPI 以编程方式设置 OPT

发布于 2024-09-18 14:00:48 字数 532 浏览 5 评论 0原文

给出可以加载到 MS SAPI 5.1 中的以下内容:

<GRAMMAR LANGID="409"> 
    <RULE NAME="top rule" TOPLEVEL="ACTIVE"> 
        <OPT>hello</OPT> 
        <P>my name is fred</P> 
    </RULE> 
</GRAMMAR>

我如何以编程方式执行相同的操作,特别是关于可选元素。

我猜它是在这里完成的:

state.AddWordTransition(nextState, "hello", " ", SpeechGrammarWordType.SGLexical, s, id, ref propValue, 1F);

...它可能是 propValue。但是语法是什么(例如, propValue="OPT=true" - 当然不起作用)

谢谢!

Given the following which can be loaded into MS SAPI 5.1:

<GRAMMAR LANGID="409"> 
    <RULE NAME="top rule" TOPLEVEL="ACTIVE"> 
        <OPT>hello</OPT> 
        <P>my name is fred</P> 
    </RULE> 
</GRAMMAR>

How can I do the same programmatically, specifically with regard to the optional element.

I would guess it is done here:

state.AddWordTransition(nextState, "hello", " ", SpeechGrammarWordType.SGLexical, s, id, ref propValue, 1F);

...and it is probably the propValue. But what is the syntax (e.g, propValue="OPT=true" - does not work of course)

Thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

橘虞初梦 2024-09-25 14:00:48

可选字需要一个 epsilon(空)转换到下一个状态,因此添加:

state.AddWordTransition(nextState, NULL, NULL, SpeechGrammarWordType.SGLexical, s, id, ref propValue, 1F);

来添加 epsilon 转换。

Optional words need an epsilon (empty) transition to the next state, so add:

state.AddWordTransition(nextState, NULL, NULL, SpeechGrammarWordType.SGLexical, s, id, ref propValue, 1F);

to add the epsilon transition.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文