FE_main.cpp
上传用户:italyroyal
上传日期:2013-05-06
资源大小:473k
文件大小:1k
源码类别:

语音合成与识别

开发平台:

Visual C++

  1. /* Define MAIN_PROGRAM in Project--Setting--C/C++--General of Visual Studio
  2.    by using -D MAIN_PROGRAM switch in the command line. */ #include "StdAfx.h"
  3. #ifndef MAIN_PROGRAM
  4. #error Define MAIN_PROGRAM in Visual Studio or command line. Compilation is stopped.
  5. #endif
  6. #include "FE_feature.h"
  7. int main(int argc, char **argv)
  8. {
  9. Fe feat;
  10. feat.FeatureMain(FE_MFCC, "Speech/test1.raw", "Speech/test1.mfc");
  11. feat.FeatureMain(FE_PLCC, "Speech/test1.raw", "Speech/test1.plp");
  12. feat.FeatureMain(FE_PITCH, "Speech/test1.raw", "Speech/test1.pitch");
  13. feat.FeatureMain(FE_FORMANT, "Speech/test1.raw", "Speech/test1.formant");
  14. feat.EnhanceMain("Speech/test2.raw", "Speech/test2.den", 16000, 1);
  15. return 0;
  16. }