Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

App Submitted - swt-detection.v2.1 #118

Merged
merged 2 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion clams-apps-repos.csv
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ https://github.com/clamsproject/app-brandeis-acs-wrapper,AppStatus.REGISTERED,1.
https://github.com/clamsproject/app-aapb-pua-kaldi-wrapper,AppStatus.REGISTERED,1.0.9,main,2023-07-24 05:24:23+00:00,2020-10-02 13:45:49+00:00
https://github.com/clamsproject/app-slatedetection,AppStatus.REGISTERED,1.0.9,main,2023-07-24 04:45:55+00:00,2019-05-30 19:12:45+00:00
https://github.com/clamsproject/app-inaspeechsegmenter-wrapper,AppStatus.REGISTERED,1.0.3,main,2023-06-20 02:28:20+00:00,2020-12-24 04:01:51+00:00
https://github.com/clamsproject/app-easyocr-wrapper,AppStatus.UPDATED,1.0.9,main,2024-01-18 17:59:24+00:00,2023-07-24 19:12:12+00:00
https://github.com/clamsproject/app-easyocr-wrapper,AppStatus.UPDATED,1.0.9,main,2024-01-25 18:38:21+00:00,2023-07-24 19:12:12+00:00
https://github.com/clamsproject/app-pix2struct-slates,AppStatus.UPDATED,1.0.9,main,2023-08-22 16:45:44+00:00,2023-07-24 17:05:31+00:00
https://github.com/clamsproject/app-pix2struct-chyrons,AppStatus.UPDATED,1.0.9,main,2023-08-22 16:44:07+00:00,2023-07-24 17:25:15+00:00
https://github.com/clamsproject/app-wav2vec-forced-aligner,AppStatus.UPDATED,UNKNOWN,master,2023-08-18 14:09:09+00:00,2023-08-10 19:50:08+00:00
Expand Down
44 changes: 44 additions & 0 deletions docs/_apps/swt-detection/v2.1/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
layout: single
classes: wide
title: "Scenes-with-text Detection (v2.1)"
---
## About this version

* Submitter: [marcverhagen](https://github.com/marcverhagen)
* Submission Time: 2024-01-25T20:44:45+00:00
* Prebuilt Container Image: [ghcr.io/clamsproject/app-swt-detection:v2.1](https://github.com/clamsproject/app-swt-detection/pkgs/container/app-swt-detection/v2.1)
* Release Notes

> Fixed fatal error in 2.0 and added timeUnit

## About this app (See raw [metadata.json](metadata.json))

**Detects scenes with text, like slates, chyrons and credits.**

* App ID: [http://apps.clams.ai/swt-detection/v2.1](http://apps.clams.ai/swt-detection/v2.1)
* App License: Apache 2.0
* Source Repository: [https://github.com/clamsproject/app-swt-detection](https://github.com/clamsproject/app-swt-detection) ([source tree of the submitted version](https://github.com/clamsproject/app-swt-detection/tree/v2.1))


#### Inputs
* [http://mmif.clams.ai/vocabulary/VideoDocument/v1](http://mmif.clams.ai/vocabulary/VideoDocument/v1) (required)
(any properties)


#### Configurable Parameters
**(_Multivalued_ means the parameter can have one or more values.)**

|Name|Description|Type|Multivalued|Default|Choices|
|----|-----------|----|-----------|-------|-------|
|sampleRate|Milliseconds between sampled frames|integer|N|1000||
|minFrameScore|Minimum score for a still frame to be included in a TimeFrame|number|N|0.01||
|minTimeframeScore|Minimum score for a TimeFrame|number|N|0.25||
|minFrameCount|Minimum number of sampled frames required for a TimeFrame|integer|N|2||
|pretty|The JSON body of the HTTP response will be re-formatted with 2-space indentation|boolean|N|false|**_`false`_**, `true`|


#### Outputs
**(Note that not all output annotations are always generated.)**
* [http://mmif.clams.ai/vocabulary/TimeFrame/v1](http://mmif.clams.ai/vocabulary/TimeFrame/v1)
* _timeUnit_ = "milliseconds"
60 changes: 60 additions & 0 deletions docs/_apps/swt-detection/v2.1/metadata.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"name": "Scenes-with-text Detection",
"description": "Detects scenes with text, like slates, chyrons and credits.",
"app_version": "v2.1",
"mmif_version": "1.0.0",
"app_license": "Apache 2.0",
"identifier": "http://apps.clams.ai/swt-detection/v2.1",
"url": "https://github.com/clamsproject/app-swt-detection",
"input": [
{
"@type": "http://mmif.clams.ai/vocabulary/VideoDocument/v1",
"required": true
}
],
"output": [
{
"@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v1",
"properties": {
"timeUnit": "milliseconds"
}
}
],
"parameters": [
{
"name": "sampleRate",
"description": "Milliseconds between sampled frames",
"type": "integer",
"default": 1000,
"multivalued": false
},
{
"name": "minFrameScore",
"description": "Minimum score for a still frame to be included in a TimeFrame",
"type": "number",
"default": 0.01,
"multivalued": false
},
{
"name": "minTimeframeScore",
"description": "Minimum score for a TimeFrame",
"type": "number",
"default": 0.25,
"multivalued": false
},
{
"name": "minFrameCount",
"description": "Minimum number of sampled frames required for a TimeFrame",
"type": "integer",
"default": 2,
"multivalued": false
},
{
"name": "pretty",
"description": "The JSON body of the HTTP response will be re-formatted with 2-space indentation",
"type": "boolean",
"default": 0,
"multivalued": false
}
]
}
6 changes: 6 additions & 0 deletions docs/_apps/swt-detection/v2.1/submission.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"time": "2024-01-25T20:44:45+00:00",
"submitter": "marcverhagen",
"image": "ghcr.io/clamsproject/app-swt-detection:v2.1",
"releasenotes": "Fixed fatal error in 2.0 and added timeUnit\n\n"
}
Loading