|
MFCC Constructor
|
Namespace:
Accord.Audio
Assembly:
Accord.Audio (in Accord.Audio.dll) Version: 3.8.0
Syntax public MFCC(
int filterCount = 40,
int cepstrumCount = 13,
double lowerFrequency = 133.3333,
double upperFrequency = 6855.4976,
double alpha = 0.97,
int samplingRate = 16000,
int frameRate = 100,
double windowLength = 0.0256,
int numberOfBins = 512
)
Public Sub New (
Optional filterCount As Integer = 40,
Optional cepstrumCount As Integer = 13,
Optional lowerFrequency As Double = 133.3333,
Optional upperFrequency As Double = 6855.4976,
Optional alpha As Double = 0.97,
Optional samplingRate As Integer = 16000,
Optional frameRate As Integer = 100,
Optional windowLength As Double = 0.0256,
Optional numberOfBins As Integer = 512
)
Request Example
View SourceParameters
- filterCount (Optional)
- Type: SystemInt32
- cepstrumCount (Optional)
- Type: SystemInt32
- lowerFrequency (Optional)
- Type: SystemDouble
- upperFrequency (Optional)
- Type: SystemDouble
- alpha (Optional)
- Type: SystemDouble
- samplingRate (Optional)
- Type: SystemInt32
- frameRate (Optional)
- Type: SystemInt32
- windowLength (Optional)
- Type: SystemDouble
- numberOfBins (Optional)
- Type: SystemInt32
See Also