-
Notifications
You must be signed in to change notification settings - Fork 1
/
extractor_info.json
64 lines (64 loc) · 1.19 KB
/
extractor_info.json
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"@context": "http://clowder.ncsa.illinois.edu/contexts/extractors.jsonld",
"name": "aifarms.coco",
"version": "1.0.2",
"description": "Extractor coco annotations",
"author": "Ana Lucic <[email protected]>",
"contributors": [
"Rob Kooper <[email protected]>"
],
"contexts": [],
"repository": [
{
"repType": "git",
"repUrl": "https://github.com/AIFARMS/extractor-coco"
},
{
"repType": "docker",
"repUrl": "aifarms/extractors-coco"
}
],
"process": {
"dataset": [
"file.added"
]
},
"external_services": [],
"dependencies": [
],
"bibtex": [],
"categories": [
"EXTRACT"
],
"labels": [
"Type/Image",
"Domain/AI"
],
"parameters": {
"schema": {
"color": {
"type": "string",
"title": "bounding box color",
"default": "#8b008b"
},
"width": {
"type": "integer",
"title": "bounding box width",
"default": 5,
"minimum": 1,
"maximum": 20
}
},
"form": [
{
"key": "color"
},
{
"key": "width",
"type": "range",
"step": 1,
"indicator": true
}
]
}
}