C# 클래스 UnityEngine.Windows.Speech.DictationRecognizer

DictationRecognizer listens to speech input and attempts to determine what phrase was uttered.

상속: IDisposable
파일 보기 프로젝트 열기: CarlosHBC/UnityDecompiled 1 사용 예제들

공개 메소드들

메소드 설명
DictationRecognizer ( ) : System

Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.

DictationRecognizer ( ConfidenceLevel confidenceLevel ) : System

Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.

DictationRecognizer ( ConfidenceLevel minimumConfidence, DictationTopicConstraint topic ) : System

Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.

DictationRecognizer ( DictationTopicConstraint topic ) : System

Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.

Dispose ( ) : void

Disposes the resources this dictation recognizer uses.

Start ( ) : void

Starts the dictation recognization session. Dictation recognizer can only be started if PhraseRecognitionSystem is not running.

Stop ( ) : void

Stops the dictation recognization session.

비공개 메소드들

메소드 설명
Create ( ConfidenceLevel minimumConfidence, DictationTopicConstraint topicConstraint ) : IntPtr
Destroy ( IntPtr self ) : void
DestroyThreaded ( IntPtr self ) : void
DictationRecognizer_InvokeCompletedEvent ( DictationCompletionCause cause ) : void
DictationRecognizer_InvokeErrorEvent ( string error, int hresult ) : void
DictationRecognizer_InvokeHypothesisGeneratedEvent ( string keyword ) : void
DictationRecognizer_InvokeResultGeneratedEvent ( string keyword, ConfidenceLevel minimumConfidence ) : void
GetAutoSilenceTimeoutSeconds ( IntPtr self ) : float
GetInitialSilenceTimeoutSeconds ( IntPtr self ) : float
GetStatus ( IntPtr self ) : SpeechSystemStatus
INTERNAL_CALL_Create ( DictationRecognizer self, ConfidenceLevel minimumConfidence, DictationTopicConstraint topicConstraint, IntPtr &value ) : void
SetAutoSilenceTimeoutSeconds ( IntPtr self, float value ) : void
SetInitialSilenceTimeoutSeconds ( IntPtr self, float value ) : void
Start ( IntPtr self ) : void
Stop ( IntPtr self ) : void

메소드 상세

DictationRecognizer() 공개 메소드

Create a DictationRecognizer with the specified minimum confidence and dictation topic constraint. Phrases under the specified minimum level will be ignored.

public DictationRecognizer ( ) : System
리턴 System

DictationRecognizer() 공개 메소드

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 ) : System
confidenceLevel ConfidenceLevel
리턴 System

DictationRecognizer() 공개 메소드

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 ) : System
minimumConfidence ConfidenceLevel The confidence level at which the recognizer will begin accepting phrases.
topic DictationTopicConstraint The dictation topic that this dictation recognizer should optimize its recognition for.
리턴 System

DictationRecognizer() 공개 메소드

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 ) : System
topic DictationTopicConstraint The dictation topic that this dictation recognizer should optimize its recognition for.
리턴 System

Dispose() 공개 메소드

Disposes the resources this dictation recognizer uses.

public Dispose ( ) : void
리턴 void

Start() 공개 메소드

Starts the dictation recognization session. Dictation recognizer can only be started if PhraseRecognitionSystem is not running.

public Start ( ) : void
리턴 void

Stop() 공개 메소드

Stops the dictation recognization session.

public Stop ( ) : void
리턴 void