fe_internal.h
来自「CMU大名鼎鼎的SPHINX-3大词汇量连续语音识别系统」· C头文件 代码 · 共 112 行
H
112 行
/* ==================================================================== * Copyright (c) 1996-2004 Carnegie Mellon University. All rights * reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in * the documentation and/or other materials provided with the * distribution. * * This work was supported in part by funding from the Defense Advanced * Research Projects Agency and the National Science Foundation of the * United States of America, and the CMU Sphinx Speech Consortium. * * THIS SOFTWARE IS PROVIDED BY CARNEGIE MELLON UNIVERSITY ``AS IS'' AND * ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL CARNEGIE MELLON UNIVERSITY * NOR ITS EMPLOYEES BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * ==================================================================== * */#ifndef _FE_INTERNAL_H_#define _FE_INTERNAL_H_/** \file fe_internal.h \brief All signal processing functions are opned */#ifdef __cplusplusextern "C" {#endif#ifndef M_PI#define M_PI (3.14159265358979323846)#endif /* M_PI */#define FORWARD_FFT 1#define INVERSE_FFT -1typedef struct { float64 r, i; } complex; /** Build mel filters */int32 fe_build_melfilters(melfb_t *MEL_FB); /** Compute mel cosine */int32 fe_compute_melcosine(melfb_t *MEL_FB);float32 fe_mel(float32 x);float32 fe_melinv(float32 x); /** Perform pre-emphasis */void fe_pre_emphasis(int16 const *in, float64 *out, int32 len, float32 factor, int16 prior); /** Create a hamming window */void fe_create_hamming(float64 *in, int32 in_len); /** Apply hamming window */void fe_hamming_window(float64 *in, float64 *window, int32 in_len); /** Initialize hamming window */void fe_init_hamming(float64 *win, int32 len); /** Compute the magnitude of a spectrum */void fe_spec_magnitude(float64 const *data, int32 data_len, float64 *spec, int32 fftsize); /** Compute the feature from frame */int32 fe_frame_to_fea(fe_t *FE, float64 *in, float64 *fea); /** Mel spectrum */void fe_mel_spec(fe_t *FE, float64 const *spec, float64 *mfspec); /** Mel cepstrum */int32 fe_mel_cep(fe_t *FE, float64 *mfspec, float64 *mfcep); /** FFT */int32 fe_fft(complex const *in, complex *out, int32 N, int32 invert);void fe_short_to_double(int16 const *in, float64 *out, int32 len); /** Front end specific memory allocation routine */char **fe_create_2d(int32 d1, int32 d2, int32 elem_size); /** Front end specific memory delallocation routine */void fe_free_2d(void **arr); /** Print the fe structure. */void fe_print_current(fe_t *FE);void fe_parse_general_params(param_t const *P, fe_t *FE);void fe_parse_melfb_params(param_t const *P, melfb_t *MEL);#ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?