From 24e560cecb161dc195ab48b70a11021a1182ec11 Mon Sep 17 00:00:00 2001 From: towsey Date: Sat, 2 May 2020 17:37:41 +1000 Subject: [PATCH] Update NinoxBoobook.cs Issue #297 Boobook Owl --- src/AnalysisPrograms/Recognizers/Birds/NinoxBoobook.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/AnalysisPrograms/Recognizers/Birds/NinoxBoobook.cs b/src/AnalysisPrograms/Recognizers/Birds/NinoxBoobook.cs index 7af75b689..d4cf9a73f 100644 --- a/src/AnalysisPrograms/Recognizers/Birds/NinoxBoobook.cs +++ b/src/AnalysisPrograms/Recognizers/Birds/NinoxBoobook.cs @@ -97,7 +97,6 @@ public override RecognizerResults Recognize( // Convert events to spectral events for possible combining. // Combine overlapping events. If the dB threshold is set low, may get lots of little events. - // var events = combinedResults.NewEvents; var spectralEvents = events.Select(x => (SpectralEvent)x).ToList(); var newEvents = CompositeEvent.CombineOverlappingEvents(spectralEvents); @@ -140,7 +139,6 @@ public override void SummariseResults( /// /> public class NinoxBoobookConfig : GenericRecognizerConfig, INamedProfiles { - //public bool CombineOverlappedEvents { get; set; } public bool CombinePossibleSyllableSequence { get; set; } = false; public double SyllableStartDifference { get; set; } = 0.5;