forked from cytomine/S_CellDetect_Stardist_HE_ROI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdescriptor.json
More file actions
197 lines (195 loc) · 5.8 KB
/
descriptor.json
File metadata and controls
197 lines (195 loc) · 5.8 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
{
"name": "CellDetect_Stardist_HE_ROI_devel",
"container-image": {
"image": "anttikos/s_celldetect_stardist_he_roi_devel",
"type": "singularity"
},
"schema-version": "cytomine-0.1",
"description": "Cell (nuclei) detection using StarDist with versatile H&E pre-trained model",
"command-line": "python run.py CYTOMINE_HOST CYTOMINE_PUBLIC_KEY CYTOMINE_PRIVATE_KEY CYTOMINE_ID_PROJECT CYTOMINE_ID_SOFTWARE CYTOMINE_ID_IMAGES CYTOMINE_ID_ROI_TERM CYTOMINE_ID_CELL_TERM STARDIST_PROB_T STARDIST_NMS_T STARDIST_NORM_PERC_LOW STARDIST_NORM_PERC_HIGH ALT_HOST ALT_PUB_KEY ALT_PRIV_KEY ALT_ID_SOFTWARE ALT_ID_PROJECT",
"inputs": [
{
"id": "cytomine_host",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine host",
"set-by-server": true,
"optional": false,
"type": "String"
},
{
"id": "cytomine_public_key",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine public key",
"set-by-server": true,
"optional": false,
"type": "String"
},
{
"id": "cytomine_private_key",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine private key",
"set-by-server": true,
"optional": false,
"type": "String"
},
{
"id": "cytomine_id_project",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine project ID",
"set-by-server": true,
"optional": false,
"type": "Number"
},
{
"id": "cytomine_id_software",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine software ID",
"set-by-server": true,
"optional": false,
"type": "Number"
},
{
"id": "cytomine_id_images",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine Image IDs",
"description": "Images on which to detect objects",
"set-by-server": false,
"optional": false,
"type": "ListDomain",
"uri": "/api/project/$currentProject$/imageinstance.json",
"uri-print-attribute": "instanceFilename",
"uri-sort-attribute": "instanceFilename"
},
{
"id": "cytomine_id_roi_term",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine ROI term ID",
"description": "Ontology term ID for ROI(s) where to detect cells",
"set-by-server": false,
"optional": false,
"type": "Domain",
"uri": "/api/ontology/$currentOntology$/term.json",
"uri-print-attribute": "name",
"uri-sort-attribute": "name"
},
{
"id": "cytomine_id_cell_term",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Cytomine Cell term ID",
"description": "Ontology term ID for Cell to be detected",
"set-by-server": false,
"optional": false,
"type": "Domain",
"uri": "/api/ontology/$currentOntology$/term.json",
"uri-print-attribute": "name",
"uri-sort-attribute": "name"
},
{
"id": "stardist_prob_t",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Stardist Probability Threshold",
"description": "Probability Threshold in range [0.0, 1.0] - higher values lead to fewer segmented objects, but will likely avoid false positives",
"default-value": 0.5,
"set-by-server": false,
"optional": true,
"type": "Number"
},
{
"id": "stardist_nms_t",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Stardist Non-Maximum Suppression Overlap threshold",
"description": "Overlap Threshold in range [0.0, 1.0] - higher values allow segmented objects to overlap substantially.",
"default-value": 0.5,
"set-by-server": false,
"optional": true,
"type": "Number"
},
{
"id": "stardist_norm_perc_low",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Stardist Image Normalization Percentile Low",
"description": "Percentile low in range [0.0 100.0]",
"default-value": 1,
"set-by-server": false,
"optional": true,
"type": "Number"
},
{
"id": "stardist_norm_perc_high",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Stardist Image Normalization Percentile High",
"description": "Percentile high in range [0.0 100.0]",
"default-value": 99.8,
"set-by-server": false,
"optional": true,
"type": "Number"
},
{
"id": "alt_host",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Alternative Cytomine host",
"description": "Alternative Cytomine host",
"default-value": "",
"set-by-server": false,
"optional": true,
"type": "String"
},
{
"id": "alt_pub_key",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Alternative Cytomine public key",
"description": "Alternative Cytomine public key",
"default-value": "",
"set-by-server": false,
"optional": true,
"type": "String"
},
{
"id": "alt_priv_key",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Alternative Cytomine private key",
"description": "Alternative Cytomine private key",
"default-value": "",
"set-by-server": false,
"optional": true,
"type": "String"
},
{
"id": "alt_id_project",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Alternative Cytomine project ID",
"description": "Alternative Cytomine project ID",
"default-value": "",
"set-by-server": false,
"optional": true,
"type": "Number"
},
{
"id": "alt_id_software",
"value-key": "@ID",
"command-line-flag": "--@id",
"name": "Alternative Cytomine software ID",
"description": "Alternative Cytomine software ID",
"default-value": "",
"set-by-server": false,
"optional": true,
"type": "Number"
}
]
}