-
Notifications
You must be signed in to change notification settings - Fork 0
/
ead.json
executable file
·56 lines (55 loc) · 1.61 KB
/
ead.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
{
"$schema": "https://developer.empaia.org/schema/ead-app-schema-draft-3.json",
"name": "Glomeruli Segmentation App",
"name_short": "GloMAP",
"namespace": "org.empaia.dai.glomeruli_segmentation.v1",
"description": "Kidney segmentation algorithm for detection and counting of glomeruli in kidney WSI data",
"classes": {
"glomerulus": {
"name": "Glomerulus"
},
"anomaly": {
"name": "Possible anomaly"
}
},
"inputs": {
"slide": {
"type": "wsi"
},
"region_of_interest": {
"type": "rectangle",
"reference": "inputs.slide",
"classes": [
"org.empaia.global.v1.classes.roi"
]
}
},
"outputs": {
"glomeruli_segmentation": {
"type": "collection",
"reference": "inputs.region_of_interest",
"items": {
"type": "polygon",
"reference": "inputs.slide"
}
},
"glomeruli_segmentation_confidences": {
"type": "collection",
"items": {
"type": "float",
"reference": "outputs.glomeruli_segmentation.items"
}
},
"glomeruli_segmentation_classifications": {
"type": "collection",
"items" : {
"type": "class",
"reference": "outputs.glomeruli_segmentation.items"
}
},
"glomeruli_segmentation_count": {
"type": "integer",
"reference": "inputs.region_of_interest"
}
}
}