/// <summary> /// Write a list of file paths to mkcollection file. /// </summary> /// <param name="filePaths">List of paths to be included in the mkcolection file.</param> /// <returns>Path to output mkcollection<s/returns> protected string MakeMkcollection(string[] filePaths) { return(BExtract.convertToMkcollection(filePaths)); }
/// <summary> /// Run feature extract on the given mkcollection. /// </summary> /// <param name="mkcollectionPath">Path to mkcollection of songs to run feature extraction on</param> /// <returns>Path to .arff file that contains the features for the given mkcollection</returns> protected string ExtractFeaturesToFile(string mkcollectionPath) { return(BExtract.featureExtraction(mkcollectionPath)); }
protected void ExtractFeaturesToFile(string mkcollectionPath) { BExtract.getFeatures(mkcollectionPath); }