Click or drag to resize

GraphMfcc Method

https://www.emgu.com/wiki/index.php/Emgu_TF
Mfcc

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation Mfcc(
	Output spectrogram,
	Output sample_rate,
	float upper_frequency_limit = 4000f,
	float lower_frequency_limit = 20f,
	long filterbank_channel_count = 40,
	long dct_coefficient_count = 13,
	string opName = "Mfcc"
)

Parameters

spectrogram
Type: Emgu.TFOutput
Input to the operation.
sample_rate
Type: Emgu.TFOutput
Input to the operation.
upper_frequency_limit (Optional)
Type: SystemSingle
upper frequency limit
lower_frequency_limit (Optional)
Type: SystemSingle
lower frequency limit
filterbank_channel_count (Optional)
Type: SystemInt64
filterbank channel count
dct_coefficient_count (Optional)
Type: SystemInt64
dct coefficient count
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] output(type: DtFloat).
See Also