Skip to content

Commit

Permalink
Set up the Australiasian Pipit recognizer
Browse files Browse the repository at this point in the history
Issue #321 THis recognizer now works on a single example file used for unit test purposes. Has not been tested on the noise dataset.
  • Loading branch information
towsey committed Jun 4, 2020
1 parent 118c622 commit 857e714
Show file tree
Hide file tree
Showing 5 changed files with 475 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
---

# Australasian Pipit = Towsey.Anthus novaeseelandiae
# Resample rate must be 2 X the desired Nyquist
ResampleRate: 16000
# SegmentDuration: units=seconds;
SegmentDuration: 60
# SegmentOverlap: units=seconds;
SegmentOverlap: 0

# Each of these profiles will be analyzed
# This profile is required for the species-specific recogniser and must have the current name.
Profiles:
PipitSyllable: !UpwardTrackParameters
ComponentName: Whip
SpeciesName: AnthusNovaeseelandiae
FrameSize: 512
FrameStep: 256
WindowFunction: HANNING
#BgNoiseThreshold: 0.0
# min and max of the freq band to search
MinHertz: 2000
MaxHertz: 7000
MinBandwidthHertz: 500
MaxBandwidthHertz: 5000
MinDuration: 0.1
MaxDuration: 0.5
DecibelThreshold: 6.0

#################### POST-PROCESSING of EVENTS ###################

# A: First post-processing steps are to combine overlapping/proximal/sequential events
# 1: Combine overlapping events
#CombineOverlappingEvents: false

# 2: Combine each pair of Boobook syllables as one event
# Can also use this to "mop up" events in neighbourhood - these can be removed later.
CombinePossibleSyllableSequence: false
SyllableStartDifference: 3.0
SyllableHertzGap: 35

# B: Filter the events for excess activity in their upper and lower buffer zones
LowerHertzBuffer: 150
UpperHertzBuffer: 400

# C: Options to save results files
# 4: Available options for saving data files (case-sensitive): [False/Never | True/Always | WhenEventsDetected]
SaveIntermediateWavFiles: Never
SaveIntermediateCsvFiles: false
# Available options (case-sensitive): [False/Never | True/Always | WhenEventsDetected]
# "True" is useful when debugging but "WhenEventsDetected" is required for operational use.

# 5: Available options for saving
SaveSonogramImages: True
#SaveSonogramImages: WhenEventsDetected
# DisplayCsvImage is obsolete - ensure it remains set to: false
DisplayCsvImage: false
## End section for AnalyzeLongRecording

# Other config files to reference
HighResolutionIndicesConfig: "../Towsey.Acoustic.HiResIndicesForRecognisers.yml"

################################################################################
# Common settings
#Standard: &STANDARD
#EventThreshold: 0.2
#BgNoiseThreshold: 3.0

# This notation means the a profile has all of the settings that the Standard profile has,
# however, the DctDuration parameter has been overridden.
# <<: *STANDARD
# DctDuration: 0.3
...
Loading

0 comments on commit 857e714

Please sign in to comment.