Skip to content

Commit

Permalink
[WIP] Finished rewwriting generic recognizer
Browse files Browse the repository at this point in the history
Also removed unneeded IDisposable interface on BaseSonogram.
  • Loading branch information
atruskie committed Jan 28, 2020
1 parent a2db97a commit 00086b0
Show file tree
Hide file tree
Showing 9 changed files with 273 additions and 529 deletions.
2 changes: 2 additions & 0 deletions src/AnalysisBase/AnalyzerConfig.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

namespace AnalysisBase
{
using System;
using System.IO;
using Acoustics.Shared.ConfigFile;

Expand All @@ -12,6 +13,7 @@ public class AnalyzerConfig
{
public const double EventThresholdDefault = 0.2;

[Obsolete("The AnalysisName property is no longer used")]
public string AnalysisName { get; set; }

public double EventThreshold { get; set; } = EventThresholdDefault;
Expand Down
3 changes: 0 additions & 3 deletions src/AnalysisPrograms/AnalysisPrograms.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -355,9 +355,6 @@
<Compile Include="Recognizers\Base\RecognizerEntry.cs" />
<Compile Include="Recognizers\Base\RecognizerResults.cs" />
<Compile Include="Recognizers\CriniaTinnula_OBSOLETE.cs" />
<Compile Include="Recognizers\GenericBlobRecognizer.cs" />
<Compile Include="Recognizers\GenericOscillationRecognizer.cs" />
<Compile Include="Recognizers\GenericWhistleRecognizer.cs" />
<Compile Include="Recognizers\IctalurusFurcatus.cs" />
<Compile Include="Recognizers\LewiniaPectoralis.cs" />
<Compile Include="Recognizers\LitoriaNasuta.cs" />
Expand Down
144 changes: 0 additions & 144 deletions src/AnalysisPrograms/Recognizers/GenericBlobRecognizer.cs

This file was deleted.

228 changes: 0 additions & 228 deletions src/AnalysisPrograms/Recognizers/GenericOscillationRecognizer.cs

This file was deleted.

Loading

0 comments on commit 00086b0

Please sign in to comment.