Skip to content

Commit aba215f

Browse files
author
clams-bot
committed
adding metadata of easyocr-wrapper.v1.0
1 parent 207a372 commit aba215f

File tree

5 files changed

+111
-1
lines changed

5 files changed

+111
-1
lines changed
+51
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
---
2+
layout: single
3+
classes: wide
4+
title: "Easyocr Wrapper (v1.0)"
5+
---
6+
## About this version
7+
8+
* Submitter: [snewman-aa](https://github.com/snewman-aa)
9+
* Submission Time: 2024-01-25T18:44:59+00:00
10+
* 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)
11+
* Release Notes
12+
13+
(no notes provided by the developer)
14+
15+
## About this app (See raw [metadata.json](metadata.json))
16+
17+
**Using EasyOCR to extract text from timeframes**
18+
19+
* App ID: [http://apps.clams.ai/easyocr-wrapper/v1.0](http://apps.clams.ai/easyocr-wrapper/v1.0)
20+
* App License: MIT
21+
* 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))
22+
* Analyzer Version: 1.7.0
23+
* Analyzer License: Apache 2.0
24+
25+
26+
#### Inputs
27+
* [http://mmif.clams.ai/vocabulary/VideoDocument/v1](http://mmif.clams.ai/vocabulary/VideoDocument/v1) (required)
28+
(any properties)
29+
* [http://mmif.clams.ai/vocabulary/TimeFrame/v1](http://mmif.clams.ai/vocabulary/TimeFrame/v1) (required)
30+
(any properties)
31+
32+
33+
#### Configurable Parameters
34+
**(_Multivalued_ means the parameter can have one or more values.)**
35+
36+
|Name|Description|Type|Multivalued|Default|Choices|
37+
|----|-----------|----|-----------|-------|-------|
38+
|sampleFrames|Number of frames to sample from timeframe|integer|N|1||
39+
|pretty|The JSON body of the HTTP response will be re-formatted with 2-space indentation|boolean|N|false|**_`false`_**, `true`|
40+
41+
42+
#### Outputs
43+
**(Note that not all output annotations are always generated.)**
44+
* [http://mmif.clams.ai/vocabulary/TextDocument/v1](http://mmif.clams.ai/vocabulary/TextDocument/v1)
45+
(any properties)
46+
* [http://mmif.clams.ai/vocabulary/Alignment/v1](http://mmif.clams.ai/vocabulary/Alignment/v1)
47+
(any properties)
48+
* [http://mmif.clams.ai/vocabulary/BoundingBox/v1](http://mmif.clams.ai/vocabulary/BoundingBox/v1)
49+
(any properties)
50+
* [http://mmif.clams.ai/vocabulary/TimePoint/v1](http://mmif.clams.ai/vocabulary/TimePoint/v1)
51+
(any properties)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
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+
"@type": "http://mmif.clams.ai/vocabulary/TimeFrame/v1",
18+
"required": true
19+
}
20+
],
21+
"output": [
22+
{
23+
"@type": "http://mmif.clams.ai/vocabulary/TextDocument/v1"
24+
},
25+
{
26+
"@type": "http://mmif.clams.ai/vocabulary/Alignment/v1"
27+
},
28+
{
29+
"@type": "http://mmif.clams.ai/vocabulary/BoundingBox/v1"
30+
},
31+
{
32+
"@type": "http://mmif.clams.ai/vocabulary/TimePoint/v1"
33+
}
34+
],
35+
"parameters": [
36+
{
37+
"name": "sampleFrames",
38+
"description": "Number of frames to sample from timeframe",
39+
"type": "integer",
40+
"default": 1,
41+
"multivalued": false
42+
},
43+
{
44+
"name": "pretty",
45+
"description": "The JSON body of the HTTP response will be re-formatted with 2-space indentation",
46+
"type": "boolean",
47+
"default": 0,
48+
"multivalued": false
49+
}
50+
]
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"time": "2024-01-25T18:44:59+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)