DHMM_HQ.h
上传用户:avbj512
上传日期:2013-09-18
资源大小:6239k
文件大小:1k
源码类别:

DSP编程

开发平台:

Visual C++

  1. // DHMM_HQ.h:
  2. // Interface for the DHMM_HQ Module.
  3. //
  4. // Created 2001/08, By DongMing, MDSR.
  5. //
  6. //////////////////////////////////////////////////////////////////////
  7. #if !defined(AFX_DHMM_HQ_H__8B97E397_23CE_4845_BF0C_A83155ADCEDB__INCLUDED_)
  8. #define AFX_DHMM_HQ_H__8B97E397_23CE_4845_BF0C_A83155ADCEDB__INCLUDED_
  9. #if _MSC_VER > 1000
  10. #pragma once
  11. #endif // _MSC_VER > 1000
  12. int DHMM_VQ_Train_Code_Book_HQ(DYNA_2DIM_DOUBLE_ARRAY d2dda_Code_Word, int n_Code_Word_Num, int n_Code_Word_Dim,
  13.    DYNA_2DIM_DOUBLE_ARRAY d2dda_Initial_Code_Book, DYNA_2DIM_DOUBLE_ARRAY d2dda_Code_Book, int n_Code_Book_Size);
  14. int DHMM_Model_Train_DHMM_Model_HQ(WORD_SAMPLE * pu_Word_Sample, int n_Word_Sample_Num,
  15.    DHMM_MODEL * pu_DHMM_Model);
  16. int DHMM_Recog_Viterbi_HQ(DHMM_MODEL * pu_DHMM_Model,
  17.   WORD_SAMPLE * pu_Word_Sample,
  18.   double * pd_Max_Likelihood, int * pn_Status_Sequence);
  19. int DHMM_Recog_Forward_Backward_HQ(DHMM_MODEL * pu_DHMM_Model,
  20.    WORD_SAMPLE * pu_Word_Sample,
  21.    double * pd_Max_Likelihood);
  22. long DHMM_Recog_Viterbi_HQ_FIX(DYNA_2DIM_INT_ARRAY d2dna_LogB, int n_State_Num,
  23.   int * pn_VQed_Feature_Sequence, int n_Feature_Sequence_Len);
  24. #endif // !defined(AFX_DHMM_HQ_H__8B97E397_23CE_4845_BF0C_A83155ADCEDB__INCLUDED_)