#include <sent/mfcc.h>
#include <sent/speech.h>
マクロ定義 | |
| #define | ISTOKEN(A) (A == ' ' || A == '\t' || A == '\n') |
| Determine token characters | |
関数 | |
| void | undef_para (Value *para) |
| Reset configuration parameters for MFCC computation. | |
| void | make_default_para (Value *para) |
| Set Julius default parameters for MFCC computation. | |
| void | make_default_para_htk (Value *para) |
| Set HTK default configuration parameters for MFCC computation. | |
| void | apply_para (Value *dst, Value *src) |
| Merge two configuration parameters for MFCC computation. | |
| boolean | htk_config_file_parse (char *HTKconffile, Value *para) |
| Read and parse an HTK Config file, and set the specified option values. | |
| void | calc_para_from_header (Value *para, short param_type, short vec_size) |
| Set acoustic analysis parameters from HTK HMM definition header information. | |
| void | put_para (FILE *fp, Value *para) |
| Output acoustic analysis configuration parameters to stdout. | |
音響分析の設定パラメータを保持する Value 構造体を扱う.
Value structure holds acoustic analysis configuration parameters.
para.c で定義されています。
| void undef_para | ( | Value * | para | ) |
Reset configuration parameters for MFCC computation.
| para | [out] feature extraction parameters |
| void make_default_para | ( | Value * | para | ) |
Set Julius default parameters for MFCC computation.
| para | [out] feature extraction parameters |
| void make_default_para_htk | ( | Value * | para | ) |
Set HTK default configuration parameters for MFCC computation.
This will be refered when parameters are given as HTK Config file.
| para | [out] feature extraction parameters |
Merge two configuration parameters for MFCC computation.
| dst | [out] feature extraction parameters to set to | |
| src | [out] feature extraction parameters to set from |
Read and parse an HTK Config file, and set the specified option values.
| HTKconffile | [in] HTK Config file path name | |
| para | [out] MFCC parameter to set |
参照元 opt_parse().
| void calc_para_from_header | ( | Value * | para, | |
| short | param_type, | |||
| short | vec_size | |||
| ) |
| void put_para | ( | FILE * | fp, | |
| Value * | para | |||
| ) |
Output acoustic analysis configuration parameters to stdout.
| fp | [in] file pointer | |
| para | [in] configuration parameter |
参照元 print_engine_info().
1.5.1