Search Results for

    Show / Hide Table of Contents

    Class MfccConfiguration

    CEPSTROGRAM - PARAMETERs.

    Inheritance
    Object
    MfccConfiguration
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: AudioAnalysisTools
    Assembly: AudioAnalysisTools.dll
    Syntax
    [Serializable]
    public class MfccConfiguration

    Constructors

    | Improve this Doc View Source

    MfccConfiguration(Boolean, Int32, Int32, Boolean, Boolean)

    Declaration
    public MfccConfiguration(bool doMelScale, int filterBankCount, int coeffCount, bool includeDelta, bool includeDoubleDelta)
    Parameters
    Type Name Description
    Boolean doMelScale
    Int32 filterBankCount
    Int32 coeffCount
    Boolean includeDelta
    Boolean includeDoubleDelta
    | Improve this Doc View Source

    MfccConfiguration(ConfigDictionary)

    Declaration
    public MfccConfiguration(ConfigDictionary config)
    Parameters
    Type Name Description
    ConfigDictionary config

    Properties

    | Improve this Doc View Source

    CcCount

    Gets or sets the number of cepstral coefficients. The default value is 12.

    Declaration
    public int CcCount { get; set; }
    Property Value
    Type Description
    Int32
    | Improve this Doc View Source

    DoMelScale

    Gets or sets a value indicating whether to convert linear frequency scale to melscale. Default = true.

    Declaration
    public bool DoMelScale { get; set; }
    Property Value
    Type Description
    Boolean
    | Improve this Doc View Source

    FilterbankCount

    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
    Type Description
    Int32
    | Improve this Doc View Source

    IncludeDelta

    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
    Type Description
    Boolean
    | Improve this Doc View Source

    IncludeDoubleDelta

    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
    Type Description
    Boolean

    Methods

    | Improve this Doc View Source

    Save(TextWriter)

    Declaration
    public void Save(TextWriter writer)
    Parameters
    Type Name Description
    TextWriter writer

    Extension Methods

    ObjectExtensions.NotNull(Object)
    ObjectExtensions.AsArray<T>(T)
    ObjectExtensions.AsList<T>(T)
    ObjectExtensions.Wrap<T>(T)
    SystemExtensions.BinarySerialize(Object)
    ConfigFileExtensions.NotNull(Object, FileInfo, String, String)
    ConfigFileExtensions.ValidateNotNull(Object, String, String)
    ConfigFileExtensions.ValidateLessThan<T>(Object, Nullable<T>, String, Nullable<T>, String, String)
    ExtensionsXml.SerializeObject<T>(T)
    • Improve this Doc
    • View Source
    In This Article
    Generated by DocFX AP docs version: 21.7.0.4-master-e26127a50d7bd7472d47288f10e61014fb981f7f-DIRTY-CI:144 Back to top