JunkBox_Win_Lib 1.5.3
Loading...
Searching...
No Matches
NiSpeech.h
Go to the documentation of this file.
1#pragma once
2
15#ifdef ENABLE_NI_SPEECH
16
17#include "NiToolWin.h"
18
19#include <sapi.h>
20#include <sphelper.h>
21
22
23// Lib
24#pragma comment(lib, "sapi.lib")
25
26
27#define NI_SPEECH_LANG_US "Language=409"
28#define NI_SPEECH_LANG_JP "Language=411"
29
30#define NI_SPEECH_LANG_US_KINECT "Language=409;Kinect=True"
31#define NI_SPEECH_LANG_JP_KINECT "Language=411;Kinect=True"
32
33
34//
35namespace jbxwl {
36
37//
38// Speech クラス
39//
40
41class CNiSpeech
42{
43public:
44 CNiSpeech(IStream* stream=NULL, WAVEFORMATEX* format=NULL);
45 virtual ~CNiSpeech(void) {}
46
47 void free(void);
48
49 //
50 BOOL init(IStream* stream, WAVEFORMATEX* format);
51 BOOL create(LPCTSTR lang);
52 BOOL load(LPCTSTR file);
53
54 //
55 BOOL start(double confidence);
56 void stop(void);
57
58 void setConfidence(double confd);
59
60private:
61 static UINT speechThread(LPVOID pParam);
62 UINT speechThread(void);
63 void process(void);
64
65protected:
66 virtual void map2action(LPCTSTR tag, double confd);
67
68protected:
69 ISpStream* m_pSpeechStream;
70 ISpRecognizer* m_pSpeechRecognizer;
71 ISpRecoContext* m_pSpeechContext;
72 ISpRecoGrammar* m_pSpeechGrammar;
73
74 HANDLE m_hSpeechEvent;
75 HANDLE m_hStopEvent;
76
77 CWinThread* m_speechThread;
78
79 double m_confidence;
80};
81
82
83} // namespace
84
85
86#endif // ENABLE_NI_SPEECH