Coverage for src/bob/bio/spear/config/annotator/mod_4hz.py: 100%
2 statements
« prev ^ index » next coverage.py v7.6.5, created at 2024-11-14 22:07 +0100
« prev ^ index » next coverage.py v7.6.5, created at 2024-11-14 22:07 +0100
1#!/usr/bin/env python
2"""Configuration for the Voice Activity Detection (VAD) annotator Mod-4hz
4This annotator returns a mask (boolean array) of an audio signal, with ones where a
5voice is detected, and zeroes otherwise.
7Uses 4Hz modulation energy
9Usage
10-----
12Feed this file (also defined as a ``mod-4hz`` resource) to ``bob bio annotate`` as
13configuration::
15 $ bob bio annotate -a mod-4hz -d <database> -o annotations/
17or include it in a pipeline.
18"""
20from bob.bio.spear.annotator import Mod_4Hz
22annotator = Mod_4Hz()