|
MelFrequencyCepstrumCoefficient Constructor
|
Initializes a new instance of the
MFCC class.
Namespace:
Accord.Audio
Assembly:
Accord.Audio (in Accord.Audio.dll) Version: 3.8.0
Syntax public MelFrequencyCepstrumCoefficient(
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
The filter count. - cepstrumCount (Optional)
- Type: SystemInt32
The cepstrum count. - lowerFrequency (Optional)
- Type: SystemDouble
The lower frequency. - upperFrequency (Optional)
- Type: SystemDouble
The upper frequency. - alpha (Optional)
- Type: SystemDouble
The alpha. - samplingRate (Optional)
- Type: SystemInt32
The sampling rate. - frameRate (Optional)
- Type: SystemInt32
The frame rate. - windowLength (Optional)
- Type: SystemDouble
Length of the window. - numberOfBins (Optional)
- Type: SystemInt32
The number of bins.
See Also