#include <sent/stddefs.h>
#include <sent/htk_hmm.h>
#include <sent/htk_param.h>
#include <sent/hmm.h>
#include <sent/hmm_calc.h>
Go to the source code of this file.
Functions | |
void | put_htk_trans (FILE *fp, HTK_HMM_Trans *t) |
Output transition matrix. | |
void | put_htk_var (FILE *fp, HTK_HMM_Var *v) |
Output variance vector (diagonal). | |
void | put_htk_dens (FILE *fp, HTK_HMM_Dens *d) |
Output a density information, mean and variance. | |
void | put_htk_mpdf (FILE *fp, HTK_HMM_PDF *m) |
Output a mixture component. | |
void | put_htk_state (FILE *fp, HTK_HMM_State *s) |
Output a state. | |
void | put_htk_hmm (FILE *fp, HTK_HMM_Data *h) |
Output HMM model, number of states and information for each state. | |
void | put_logical_hmm (FILE *fp, HMM_Logical *logical) |
Output logical HMM data and its mapping status. | |
void | put_hmm_arc (FILE *fp, HMM *d) |
Output transition arcs of an HMM instance. | |
void | put_hmm_outprob (FILE *fp, HMM *d) |
Output output probability information of an HMM instance. | |
void | put_hmm (FILE *fp, HMM *d) |
Output an HMM instance. | |
void | put_param_head (FILE *fp, HTK_Param_Header *h) |
Output parameter header. | |
void | put_vec (FILE *fp, VECT **p, int num, short veclen) |
Output array of vectors. | |
void | put_param (FILE *fp, HTK_Param *pinfo) |
Output the whole parameter information, including header and all vectors. | |
void | put_param_info (FILE *fp, HTK_Param *pinfo) |
Output the length of an input parameter by number of frames and seconds. | |
void | print_hmmdef_info (FILE *fp, HTK_HMM_INFO *hmminfo) |
Output total statistic informations of the HMM definition data. |
Definition in file put_htkdata_info.c.
void put_htk_trans | ( | FILE * | fp, | |
HTK_HMM_Trans * | t | |||
) |
Output transition matrix.
fp | [in] file descriptor | |
t | [in] pointer to a transion matrix |
Definition at line 39 of file put_htkdata_info.c.
Referenced by check_hmm_limit(), and put_htk_hmm().
void put_htk_var | ( | FILE * | fp, | |
HTK_HMM_Var * | v | |||
) |
Output variance vector (diagonal).
fp | [in] file descriptor | |
v | [in] pointer to a variance data |
Definition at line 63 of file put_htkdata_info.c.
Referenced by put_htk_dens().
void put_htk_dens | ( | FILE * | fp, | |
HTK_HMM_Dens * | d | |||
) |
Output a density information, mean and variance.
fp | [in] file descriptor | |
d | [in] pointer to a density data |
Definition at line 86 of file put_htkdata_info.c.
Referenced by put_htk_mpdf().
void put_htk_mpdf | ( | FILE * | fp, | |
HTK_HMM_PDF * | m | |||
) |
Output a mixture component.
fp | [in] file descriptor | |
m | [in] pointer to HMM mixture PDF |
Definition at line 111 of file put_htkdata_info.c.
Referenced by put_htk_state().
void put_htk_state | ( | FILE * | fp, | |
HTK_HMM_State * | s | |||
) |
Output a state.
fp | [in] file descriptor | |
s | [in] pointer to HMM state |
Definition at line 142 of file put_htkdata_info.c.
Referenced by put_hmm_outprob(), and put_htk_hmm().
void put_htk_hmm | ( | FILE * | fp, | |
HTK_HMM_Data * | h | |||
) |
Output HMM model, number of states and information for each state.
fp | [in] file descriptor | |
h | [in] pointer to HMM model |
Definition at line 173 of file put_htkdata_info.c.
void put_logical_hmm | ( | FILE * | fp, | |
HMM_Logical * | logical | |||
) |
Output logical HMM data and its mapping status.
fp | [in] file descriptor | |
logical | [in] pointer to a logical HMM |
Definition at line 194 of file put_htkdata_info.c.
Referenced by print_hmminfo().
void put_hmm_arc | ( | FILE * | fp, | |
HMM * | d | |||
) |
Output transition arcs of an HMM instance.
fp | [in] file descriptor | |
d | [in] pointer to a HMM instance. |
Definition at line 212 of file put_htkdata_info.c.
Referenced by put_hmm().
void put_hmm_outprob | ( | FILE * | fp, | |
HMM * | d | |||
) |
Output output probability information of an HMM instance.
fp | [in] file descriptor | |
d | [in] pointer to a HMM instance. |
Definition at line 237 of file put_htkdata_info.c.
Referenced by put_hmm().
void put_hmm | ( | FILE * | fp, | |
HMM * | d | |||
) |
Output an HMM instance.
fp | [in] file descriptor | |
d | [in] pointer to a HMM instance. |
Definition at line 260 of file put_htkdata_info.c.
void put_param_head | ( | FILE * | fp, | |
HTK_Param_Header * | h | |||
) |
Output parameter header.
fp | [in] file descriptor | |
h | [in] pointer to a parameter header information |
Definition at line 274 of file put_htkdata_info.c.
Referenced by put_param().
void put_vec | ( | FILE * | fp, | |
VECT ** | p, | |||
int | num, | |||
short | veclen | |||
) |
Output array of vectors.
fp | [in] file descriptor | |
p | [in] pointer to vector array represented as [0..num-1][0...veclen-1] | |
num | [in] number of vectors in p | |
veclen | [in] length of each vector |
Definition at line 294 of file put_htkdata_info.c.
Referenced by put_param().
void put_param | ( | FILE * | fp, | |
HTK_Param * | pinfo | |||
) |
Output the whole parameter information, including header and all vectors.
fp | [in] file descriptor | |
pinfo | [in] pointer to parameter structure. |
Definition at line 316 of file put_htkdata_info.c.
void put_param_info | ( | FILE * | fp, | |
HTK_Param * | pinfo | |||
) |
Output the length of an input parameter by number of frames and seconds.
fp | [in] file descriptor | |
pinfo | [in] pointer to parameter structure. |
Definition at line 330 of file put_htkdata_info.c.
void print_hmmdef_info | ( | FILE * | fp, | |
HTK_HMM_INFO * | hmminfo | |||
) |
Output total statistic informations of the HMM definition data.
fp | [in] file descriptor | |
hmminfo | [in] HMM definition data. |
Definition at line 348 of file put_htkdata_info.c.
Referenced by print_engine_info().