Simple Timepoints Stitcher (v1.1)
About this version
- Submitter: keighrim
- Submission Time: 2024-04-02T20:20:44+00:00
- Prebuilt Container Image: ghcr.io/clamsproject/app-simple-timepoints-stitcher:v1.1
-
Release Notes
(no notes provided by the developer)
About this app (See raw metadata.json)
Stitches a sequence of TimePoint
annotations into a sequence of TimeFrame
annotations, performing simple smoothing of short peaks of positive labels.
- App ID: http://apps.clams.ai/simple-timepoints-stitcher/v1.1
- App License: Apache 2.0
- Source Repository: https://github.com/clamsproject/app-simple-timepoints-stitcher (source tree of the submitted version)
Inputs
(Note: “*” as a property value means that the property is required but can be any value.)
One of the following is required: [
-
http://mmif.clams.ai/vocabulary/AudioDocument/v1 (required) (of any properties)
-
http://mmif.clams.ai/vocabulary/VideoDocument/v1 (required) (of any properties)
]
- http://mmif.clams.ai/vocabulary/TimePoint/v4 (required)
- timePoint = “*”
- classification = “*”
TimePoint annotations to be stitched. Must be “exhaustive” in that it should cover an entire single time period in the input document, with a uniform sample rate.
Configurable Parameters
(Note: Multivalued means the parameter can have one or more values.)
-
labelMap
: optional, defaults to[]
- Type: map
- Multivalued: True
mapping of labels in the input annotations to new labels. Must be formatted as “IN_LABEL:OUT_LABEL” (with a colon). To pass multiple mappings, use this parameter multiple times. By default, all the input labels are passed as is, including any “negative” labels (with default value being no remapping at all). However, when at least one label is remapped, all the other “unset” labels are discarded asa negative label(“-“).
-
minTFDuration
: optional, defaults to1000
- Type: integer
- Multivalued: False
minimum duration of a TimeFrame in milliseconds
-
minTPScore
: optional, defaults to0.1
- Type: number
- Multivalued: False
minimum score of a TimePoint to be considered as positive
-
minTFScore
: optional, defaults to0.5
- Type: number
- Multivalued: False
minimum average score of TimePoints in a TimeFrame to be considered as positive
-
pretty
: optional, defaults tofalse
- Type: boolean
- Multivalued: False
- Choices:
false
,true
The JSON body of the HTTP response will be re-formatted with 2-space indentation
Outputs
(Note: “*” as a property value means that the property is required but can be any value.)
(Note: Not all output annotations are always generated.)
- http://mmif.clams.ai/vocabulary/TimeFrame/v5
- timeUnit = “milliseconds”
- label = “*”
- representatives = “*”
Stitched TimeFrame annotations. Each TimeFrame annotation represents a continuous segment of timepoints and its
label
property is determined by thelabelMap
parameter (seeparameters
section). Therepresentatives
is a singleton list of the TimePoint annotation that has the highest score in the TimeFrame.