sr_00.cc

来自「这是一个从音频信号里提取特征参量的程序」· CC 代码 · 共 55 行

CC
55
字号
// file: $isip/class/asr/SpeechRecognizer/sr_00.cc// version: $Id: sr_00.cc//// isip include files//#include <SpeechRecognizer.h>// method: default constructor//// arguments: none//// return: none//// this is the default constructor//SpeechRecognizer::SpeechRecognizer() {  // initialize algorithm  //  algorithm_d = DEF_ALGORITHM;}// method: destructor//// arguments: none//// return: none//// this is the default constructor//SpeechRecognizer::~SpeechRecognizer() {  // exit gracefully  //}//-----------------------------------------------------------------------------//// we define non-integral constants in the default constructor//      //-----------------------------------------------------------------------------// constants: required constants such as class name//const String SpeechRecognizer::CLASS_NAME(L"SpeechRecognizer");// static instantiations: memory manager, debug level and verbosity//MemoryManager SpeechRecognizer::mgr_d(sizeof(SpeechRecognizer),                                       SpeechRecognizer::CLASS_NAME);Integral::DEBUG SpeechRecognizer::debug_level_d = Integral::NONE;Integral::DEBUG SpeechRecognizer::verbosity_d = Integral::NONE;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?