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

📄 example.cc

📁 这是一个从音频信号里提取特征参量的程序
💻 CC
字号:
// file: $isip/doc/examples/class/shell/shell_example_00/example.cc// version: $Id: example.cc,v 1.1 2001/04/27 02:30:06 srivasta Exp $//// isip include files//#include <Mel.h>#include <Bark.h>#include <Console.h>// main program starts here//int main (int argc, const char **argv) {  // declare a Mel and a Bark object  //  Mel mel_obj;  Bark bark_obj;    // declare the test variables  //  VectorFloat vec_input;  vec_input.assign(L"100, 500, 1000, 1500");      // the result for Mel  //  VectorFloat vec_output_mel;  // call Mel::compute method for mel transformations  //  mel_obj.compute(vec_output_mel, vec_input);  vec_output_mel.debug(L"Output of Mel Transformation");    // the result for Bark  //  VectorFloat vec_output_bark;  // call Bark::compute method for bark transformations  //  bark_obj.compute(vec_output_bark, vec_input);  vec_output_bark.debug(L"Output of Bark Transformation");  // exit gracefully  //  Integral::exit();  } 

⌨️ 快捷键说明

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