Class MfccConfiguration
CEPSTROGRAM - PARAMETERs.
Inheritance
MfccConfiguration
Assembly: AudioAnalysisTools.dll
[Serializable]
public class MfccConfiguration
Constructors
|
Improve this Doc
View Source
Declaration
public MfccConfiguration(bool doMelScale, int filterBankCount, int coeffCount, bool includeDelta, bool includeDoubleDelta)
Parameters
|
Improve this Doc
View Source
Declaration
public MfccConfiguration(ConfigDictionary config)
Parameters
Properties
|
Improve this Doc
View Source
Gets or sets the number of cepstral coefficients.
The default value is 12.
Declaration
public int CcCount { get; set; }
Property Value
|
Improve this Doc
View Source
Gets or sets a value indicating whether to convert linear frequency scale to melscale.
Default = true.
Declaration
public bool DoMelScale { get; set; }
Property Value
|
Improve this Doc
View Source
Gets or sets the size of the Mel-scale filter bank.
The default value is 64.
THe minimum I have seen referenced = 26.
Declaration
public int FilterbankCount { get; set; }
Property Value
|
Improve this Doc
View Source
Gets or sets a value indicating whether to include
the delta features in the returned MFCC feature vector.
Declaration
public bool IncludeDelta { get; set; }
Property Value
|
Improve this Doc
View Source
Gets or sets a value indicating whether to include
the delta-delta or acceleration features in the returned MFCC feature vector.
Declaration
public bool IncludeDoubleDelta { get; set; }
Property Value
Methods
|
Improve this Doc
View Source
Save(TextWriter)
Declaration
public void Save(TextWriter writer)
Parameters
Extension Methods