-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.py
50 lines (40 loc) · 1.61 KB
/
metadata.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
"""
The purpose of this file is to define the metadata of the app with minimal imports.
DO NOT CHANGE the name of the file
"""
from mmif import DocumentTypes, AnnotationTypes
from clams.app import ClamsApp
from clams.appmetadata import AppMetadata
# DO NOT CHANGE the function name
def appmetadata() -> AppMetadata:
"""
Function to set app-metadata values and return it as an ``AppMetadata`` obj.
Read these documentations before changing the code below
- https://sdk.clams.ai/appmetadata.html metadata specification.
- https://sdk.clams.ai/autodoc/clams.appmetadata.html python API
:return: AppMetadata object holding all necessary information.
"""
# first set up some basic information
metadata = AppMetadata(
name="Easyocr Wrapper",
description="Using EasyOCR to extract text from timeframes",
app_license="MIT",
identifier="easyocr-wrapper",
url="https://github.com/clamsproject/app-easyocr-wrapper",
analyzer_version="1.7.0",
analyzer_license="Apache 2.0",
)
metadata.add_input(DocumentTypes.VideoDocument)
metadata.add_input(AnnotationTypes.TimeFrame)
metadata.add_output(DocumentTypes.TextDocument)
metadata.add_output(AnnotationTypes.Alignment)
metadata.add_output(AnnotationTypes.BoundingBox)
metadata.add_output(AnnotationTypes.TimePoint)
return metadata
# DO NOT CHANGE the main block
if __name__ == '__main__':
import sys
metadata = appmetadata()
for param in ClamsApp.universal_parameters:
metadata.add_parameter(**param)
sys.stdout.write(metadata.jsonify(pretty=True))