DictationRecognizer
Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.
Read time 1 minuteLast updated 11 days ago
Definition
- Type: Constructor
- Namespace: UnityEngine.Windows.Speech
- Assembly: UnityEngine.CoreModule
DictationRecognizer()
Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.
public DictationRecognizer()
Remarks
Default confidence level is Medium. Default dictation topic constraint is Dictation.
DictationRecognizer(ConfidenceLevel)
Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.
public DictationRecognizer(ConfidenceLevel confidenceLevel)
Parameters
Remarks
Default confidence level is Medium. Default dictation topic constraint is Dictation.
DictationRecognizer(DictationTopicConstraint)
Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.
public DictationRecognizer(DictationTopicConstraint topic)
Parameters
The dictation topic that this dictation recognizer should optimize its recognition for.
Remarks
Default confidence level is Medium. Default dictation topic constraint is Dictation.
DictationRecognizer(ConfidenceLevel, DictationTopicConstraint)
Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.
public DictationRecognizer(ConfidenceLevel minimumConfidence, DictationTopicConstraint topic)
Parameters
The confidence level at which the recognizer will begin accepting phrases.
The dictation topic that this dictation recognizer should optimize its recognition for.
Remarks
Default confidence level is Medium. Default dictation topic constraint is Dictation.