mirror of
https://github.com/macaodha/batdetect2.git
synced 2026-07-08 05:10:09 +02:00
Some checks failed
CI / Checks (push) Has been cancelled
Docs Pages / Build Docs (push) Has been cancelled
CI / Tests (Python ${{ matrix.python-version }}) (3.10) (push) Has been cancelled
CI / Tests (Python ${{ matrix.python-version }}) (3.11) (push) Has been cancelled
CI / Tests (Python ${{ matrix.python-version }}) (3.12) (push) Has been cancelled
Docs Pages / Deploy Docs (push) Has been cancelled
40 lines
806 B
Markdown
40 lines
806 B
Markdown
# Output transforms reference
|
|
|
|
Output transforms operate after decoding and before formatting.
|
|
|
|
Defined in `batdetect2.outputs.transforms`.
|
|
|
|
## Top-level config
|
|
|
|
`OutputTransformConfig` contains:
|
|
|
|
- `detection_transforms`
|
|
- `clip_transforms`
|
|
|
|
## Detection transforms
|
|
|
|
Detection transforms operate on one detection at a time.
|
|
|
|
Built-in examples include:
|
|
|
|
- filtering by frequency,
|
|
- filtering by duration.
|
|
|
|
These can remove detections entirely if they fail the transform.
|
|
|
|
## Clip transforms
|
|
|
|
Clip transforms operate on the list of detections for one clip.
|
|
|
|
Built-in examples include:
|
|
|
|
- removing detections above Nyquist,
|
|
- removing detections at clip edges.
|
|
|
|
## Related pages
|
|
|
|
- Outputs config:
|
|
{doc}`outputs-config`
|
|
- Understanding outputs:
|
|
{doc}`../../../explanation/interpreting-formatted-outputs`
|