Skip to content

Commit

Permalink
Minor change to SURFAnalysis.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
towsey committed Jun 21, 2018
1 parent c619c55 commit ebc0ceb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/AnalysisConfigFiles/Towsey.Canetoad.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
AnalysisName: Towsey.Canetoad
# AnalysisName: Towsey.Canetoad
# The Canetoad's Latin name has changed from Bufo marinus to Rhinella marina.
SpeciesName: Rhinella_marina
AbbreviatedSpeciesName: R.marina
Expand Down
9 changes: 2 additions & 7 deletions src/AnalysisPrograms/SURFAnalysis.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,8 @@ public class SurfAnalysis
{
public const string CommandName = "SURFAnalysis";

//public override string Description => "[UNMAINTAINED] Uses SURF points of interest to classify recording segments of bird calls.";

private static readonly ILog Log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);

// use the following paths for the command line for the <audio2sonogram> task.
// audio2InputForConvCNN "Path to CSV file" @"C:\Work\GitHub\audio-analysis\AudioAnalysis\AnalysisConfigFiles\Mangalam.Sonogram.yml" "Output directory" true

[Command(
CommandName,
Description = "[UNMAINTAINED] Uses SURF points of interest to classify recording segments of bird calls.")]
Expand Down Expand Up @@ -480,6 +475,8 @@ public static AudioToSonogramResult GenerateSpectrogramImages(FileInfo sourceRec
/// </summary>
public class PreprocessorForSurfAnalysis : IAnalyser2
{
public string Description => "[UNMAINTAINED] Uses SURF points of interest to classify recording segments of bird calls.";

private static readonly ILog Log = LogManager.GetLogger(MethodBase.GetCurrentMethod().DeclaringType);

public PreprocessorForSurfAnalysis()
Expand All @@ -499,8 +496,6 @@ public PreprocessorForSurfAnalysis()

public string Identifier { get; private set; }

public string Description => "TODO";

public AnalysisSettings DefaultSettings { get; private set; }

public AnalyzerConfig ParseConfig(FileInfo file)
Expand Down

0 comments on commit ebc0ceb

Please sign in to comment.