Skip to content

Commit 45ad784

Browse files
author
clams-bot
committed
adding metadata of easyocr-wrapper.v1.0
1 parent 021f63c commit 45ad784

File tree

5 files changed

+100
-1
lines changed

5 files changed

+100
-1
lines changed
+44
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
layout: single
3+
classes: wide
4+
title: "Easyocr Wrapper (v1.0)"
5+
---
6+
* Submitter: [snewman-aa](https://github.com/snewman-aa)
7+
* Submission Time: 2024-01-18T19:36:37+00:00
8+
* Prebuilt Container Image: [ghcr.io/clamsproject/app-easyocr-wrapper:v1.0](https://github.com/clamsproject/app-easyocr-wrapper/pkgs/container/app-easyocr-wrapper/v1.0)
9+
10+
11+
### Easyocr Wrapper (v1.0) [metadata.json](metadata.json)
12+
###### Using EasyOCR to extract text from timeframes
13+
14+
* App ID: [http://apps.clams.ai/easyocr-wrapper/v1.0](http://apps.clams.ai/easyocr-wrapper/v1.0)
15+
* App License: MIT
16+
* Source Repository: [https://github.com/clamsproject/app-easyocr-wrapper](https://github.com/clamsproject/app-easyocr-wrapper) ([source tree of the submitted version](https://github.com/clamsproject/app-easyocr-wrapper/tree/v1.0))
17+
* Analyzer Version: 1.7.0
18+
* Analyzer License: Apache 2.0
19+
20+
21+
#### Inputs
22+
* [http://mmif.clams.ai/vocabulary/VideoDocument/v1](http://mmif.clams.ai/vocabulary/VideoDocument/v1) (required)
23+
###### ANY
24+
25+
26+
#### Configurable Parameters
27+
###### Multivalued parameters can have two or more values.
28+
29+
|Name|Description|Type|Multivalued|Default|Choices|
30+
|----|-----------|----|-----------|-------|-------|
31+
|sampleFrames|Number of frames to sample from timeframe|integer|N|1||
32+
|pretty|The JSON body of the HTTP response will be re-formatted with 2-space indentation|boolean|N|false|**_`false`_**, `true`|
33+
34+
35+
#### Outputs
36+
###### Note that not all output annotations are always generated.
37+
* [http://mmif.clams.ai/vocabulary/TextDocument/v1](http://mmif.clams.ai/vocabulary/TextDocument/v1)
38+
###### ANY
39+
* [http://mmif.clams.ai/vocabulary/Alignment/v1](http://mmif.clams.ai/vocabulary/Alignment/v1)
40+
###### ANY
41+
* [http://mmif.clams.ai/vocabulary/BoundingBox/v1](http://mmif.clams.ai/vocabulary/BoundingBox/v1)
42+
###### ANY
43+
* [http://mmif.clams.ai/vocabulary/TimePoint/v1](http://mmif.clams.ai/vocabulary/TimePoint/v1)
44+
###### ANY
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
{
2+
"name": "Easyocr Wrapper",
3+
"description": "Using EasyOCR to extract text from timeframes",
4+
"app_version": "v1.0",
5+
"mmif_version": "1.0.0",
6+
"analyzer_version": "1.7.0",
7+
"app_license": "MIT",
8+
"analyzer_license": "Apache 2.0",
9+
"identifier": "http://apps.clams.ai/easyocr-wrapper/v1.0",
10+
"url": "https://github.com/clamsproject/app-easyocr-wrapper",
11+
"input": [
12+
{
13+
"@type": "http://mmif.clams.ai/vocabulary/VideoDocument/v1",
14+
"required": true
15+
}
16+
],
17+
"output": [
18+
{
19+
"@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1"
20+
},
21+
{
22+
"@type": "http://mmif.clams.ai/vocabulary/Alignment/v1"
23+
},
24+
{
25+
"@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v1"
26+
},
27+
{
28+
"@type": "http://mmif.clams.ai/vocabulary/TimePoint/v1"
29+
}
30+
],
31+
"parameters": [
32+
{
33+
"name": "sampleFrames",
34+
"description": "Number of frames to sample from timeframe",
35+
"type": "integer",
36+
"default": 1,
37+
"multivalued": false
38+
},
39+
{
40+
"name": "pretty",
41+
"description": "The JSON body of the HTTP response will be re-formatted with 2-space indentation",
42+
"type": "boolean",
43+
"default": 0,
44+
"multivalued": false
45+
}
46+
]
47+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"time": "2024-01-18T19:36:37+00:00",
3+
"submitter": "snewman-aa",
4+
"image": "ghcr.io/clamsproject/app-easyocr-wrapper:v1.0"
5+
}

docs/_data/app-index.json

+3
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,8 @@
6565
"http://apps.clams.ai/swt-detection": [
6666
"v1.0",
6767
"v2.0"
68+
],
69+
"http://apps.clams.ai/easyocr-wrapper": [
70+
"v1.0"
6871
]
6972
}

docs/_data/apps.json

+1-1
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)