1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef _Sound_and_LPC_robust_h_
- #define _Sound_and_LPC_robust_h_
- #include "LPC.h"
- #include "Formant.h"
- #include "Sound.h"
- void LPC_Frames_Sound_huber (LPC_Frame me, Sound thee, LPC_Frame him, struct huber_struct *hs);
- autoLPC LPC_Sound_to_LPC_robust (LPC thee, Sound me, double analysisWidth,
- double preEmphasisFrequency, double k_stdev, int itermax, double tol, bool wantlocation);
- autoFormant Sound_to_Formant_robust (Sound me, double dt_in, double numberOfFormants, double maximumFrequency,
- double halfdt_window, double preemphasisFrequency, double safetyMargin, double k, int itermax, double tol, bool wantlocation);
- #endif
|