⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 example.cc

📁 这是一个从音频信号里提取特征参量的程序
💻 CC
字号:
// file: $isip/doc/examples/class/pr/pr_example_00/example.cc// version: $Id: example.cc,v 1.1 2001/05/11 16:47:38 jelinek Exp $//// isip include files//#include <HiddenMarkovModel.h>int main(int argc, const char** argv) {  // declare a HiddenMarkovModel object  //  HiddenMarkovModel hmm;  // read the hmm parameters from the parameter file  //  Filename param_file(L"$ISIP_DEVEL/class/pr/HiddenMarkovModel/diagnose_params.sof");  Sof param_sof;  param_sof.open(param_file);  hmm.read(param_sof, param_sof.first(hmm.name()));  hmm.setVerbosity(Integral::ALL);  param_sof.close();  // set up the input speech file list  //        Sdb raw_list_sdb;  boolean is_list = true;  raw_list_sdb.append(L"$ISIP_DEVEL/class/pr/HiddenMarkovModel/diagnose_raw_list.sof", is_list);  // set up the front end parameters file  //  hmm.setParamFile(param_file);    // run the HiddenMarkovModel recongizer on the input speech file list  //  hmm.run(raw_list_sdb);}

⌨️ 快捷键说明

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