You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ilastik_tasks/__FRACTAL_MANIFEST__.json
+28-13Lines changed: 28 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -15,21 +15,34 @@
15
15
},
16
16
"args_schema_parallel": {
17
17
"$defs": {
18
-
"ChannelInputModel": {
19
-
"description": "A channel which is specified by either `wavelength_id` or `label`.",
18
+
"IlastikChannel1InputModel": {
19
+
"description": "Channel input for ilastik.",
20
20
"properties": {
21
21
"wavelength_id": {
22
22
"title": "Wavelength Id",
23
-
"type": "string",
24
-
"description": "Unique ID for the channel wavelength, e.g. `A01_C01`. Can only be specified if label is not set."
23
+
"type": "string"
25
24
},
26
25
"label": {
27
26
"title": "Label",
28
-
"type": "string",
29
-
"description": "Name of the channel. Can only be specified if wavelength_id is not set."
27
+
"type": "string"
30
28
}
31
29
},
32
-
"title": "ChannelInputModel",
30
+
"title": "IlastikChannel1InputModel",
31
+
"type": "object"
32
+
},
33
+
"IlastikChannel2InputModel": {
34
+
"description": "Channel input for secondary ilastik channel.",
35
+
"properties": {
36
+
"wavelength_id": {
37
+
"title": "Wavelength Id",
38
+
"type": "string"
39
+
},
40
+
"label": {
41
+
"title": "Label",
42
+
"type": "string"
43
+
}
44
+
},
45
+
"title": "IlastikChannel2InputModel",
33
46
"type": "object"
34
47
}
35
48
},
@@ -46,16 +59,12 @@
46
59
"description": "Pyramid level of the image to be segmented. Choose `0` to process at full resolution."
47
60
},
48
61
"channel": {
49
-
"$ref": "#/$defs/ChannelInputModel",
62
+
"$ref": "#/$defs/IlastikChannel1InputModel",
50
63
"title": "Channel",
51
64
"description": "Primary channel for pixel classification; requires either `wavelength_id` (e.g. `A01_C01`) or `label` (e.g. `DAPI`)."
52
65
},
53
66
"channel2": {
54
-
"allOf": [
55
-
{
56
-
"$ref": "#/$defs/ChannelInputModel"
57
-
}
58
-
],
67
+
"$ref": "#/$defs/IlastikChannel2InputModel",
59
68
"title": "Channel2",
60
69
"description": "Second channel for pixel classification (in the same format as `channel`). Use only if second channel has also been used during Ilastik model training."
61
70
},
@@ -86,6 +95,12 @@
86
95
"type": "string",
87
96
"description": "Path to the Ilastik model (e.g. `\"somemodel.ilp\"`)."
88
97
},
98
+
"relabeling": {
99
+
"default": true,
100
+
"title": "Relabeling",
101
+
"type": "boolean",
102
+
"description": "If `True`, apply relabeling so that label values are unique for all objects in the well."
0 commit comments