-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathwipp-plugin.json
378 lines (370 loc) · 9.7 KB
/
wipp-plugin.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
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
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
{
"name": "MIST",
"version": "2.0.7",
"title": "MIST plugin",
"author": "Michael Majurski and Tim Blattner",
"institution": "National Institute of Standards and Technology",
"repository": "https://github.com/usnistgov/MIST",
"website": "https://isg.nist.gov/deepzoomweb/resources/csmet/pages/image_stitching/image_stitching.html",
"citation": "Chalfoun, Joe, et al. \"Mist: accurate and scalable microscopy image stitching tool with stage modeling and error minimization.\" Scientific reports (2017)",
"description": "Microscopy Image Stitching Tool",
"containerId": "wipp/mist:2.0.7",
"inputs": [
{
"name": "imageDir",
"type": "collection",
"options": {
"format": "tiledtiff"
},
"description": "Input Images",
"required": true
},
{
"name": "filenamePatternType",
"type": "enum",
"options": {
"values": [
"ROWCOL",
"SEQUENTIAL"
]
},
"description": "Filename Pattern Type",
"required": true
},
{
"name": "filenamePattern",
"type": "string",
"description": "Filename Pattern",
"required": true
},
{
"name": "gridOrigin",
"type": "enum",
"options": {
"values": [
"UL",
"UR",
"LL",
"LR"
]
},
"description": "Starting Point"
},
{
"name": "numberingPattern",
"type": "enum",
"options": {
"values": [
"VERTICALCOMBING",
"VERTICALCONTINUOUS",
"HORIZONTALCOMBING",
"HORIZONTALCONTINUOUS"
]
},
"description": "Direction"
},
{
"name": "gridWidth",
"type": "number",
"description": "Grid Width",
"required": true
},
{
"name": "gridHeight",
"type": "number",
"description": "Grid Height",
"required": true
},
{
"name": "startTile",
"type": "enum",
"options": {
"values": [
"0",
"1"
]
},
"description": "Start tile"
},
{
"name": "startTileRow",
"type": "enum",
"options": {
"values": [
"0",
"1"
]
},
"description": "Start tile row"
},
{
"name": "startTileCol",
"type": "enum",
"options": {
"values": [
"0",
"1"
]
},
"description": "Start tile column"
},
{
"name": "startRow",
"type": "number",
"description": "Subgrid start row"
},
{
"name": "startCol",
"type": "number",
"description": "Subgrid start column"
},
{
"name": "extentWidth",
"type": "number",
"bind": "gridWidth",
"description": "Subgrid extent width"
},
{
"name": "extentHeight",
"type": "number",
"bind": "gridHeight",
"description": "Subgrid extent height"
},
{
"name": "isTimeSlices",
"type": "boolean",
"description": "Has timeslices"
},
{
"name": "timeSlices",
"type": "string",
"description": "Timeslices"
},
{
"name": "assembleNoOverlap",
"type": "enum",
"options": {
"values": [
"False",
"True"
]
},
"description": "Whether or not to assemble images without overlap.",
"required": true
},
{
"name": "stageRepeatability",
"type": "number",
"description": "Stage repeatability"
},
{
"name": "horizontalOverlap",
"type": "number",
"description": "Horizontal Overlap"
},
{
"name": "verticalOverlap",
"type": "number",
"description": "Vertical Overlap"
},
{
"name": "overlapUncertainty",
"type": "number",
"description": "Overlap Uncertainty"
},
{
"name": "programType",
"type": "enum",
"options": {
"values": [
"JAVA",
"FFTW",
"CUDA"
]
},
"description": "Stitching Program"
}
],
"outputs": [
{
"name": "outputPath",
"type": "stitchingVector",
"description": "Output stitching vector"
}
],
"ui": [
{
"key": "inputs.assembleNoOverlap",
"title": "Assemble No Overlap: ",
"description": "Whether or not to assemble images with no overlap."
},
{
"key": "inputs.imageDir",
"title": "Input Images: ",
"description": "Pick a collection..."
},
{
"key": "inputs.filenamePatternType",
"title": "Filename Pattern Type: ",
"description": "Specify the type of filename pattern used in the acquired images."
},
{
"key": "inputs.filenamePattern",
"title": "Filename Pattern: ",
"description": "Specify the filename pattern."
},
{
"key": "inputs.gridOrigin",
"title": "Starting Point: ",
"description": "Specify the starting point of the microscope scan, specifies the origin for the grid of images."
},
{
"key": "inputs.numberingPattern",
"title": "Direction: ",
"description": "Specify the direction and pattern of the microscope motion during acquisition.",
"condition": "model.inputs.filenamePatternType=='SEQUENTIAL'"
},
{
"key": "inputs.gridWidth",
"title": "Grid Width: ",
"description": "Specify the number of images in a row (The number of columns, the width of the image grid)."
},
{
"key": "inputs.gridHeight",
"title": "Grid Height: ",
"description": "Specify the number of images in a column. (The number of rows, the height of the image grid)."
},
{
"key": "inputs.startTile",
"title": "Start Tile: ",
"description": "Specify the index of the first tile (0 or 1)",
"condition": "model.inputs.filenamePatternType=='SEQUENTIAL'"
},
{
"key": "inputs.startTileRow",
"title": "Start Tile Row: ",
"description": "Specify the index of the first tile row (0 or 1)",
"condition": "model.inputs.filenamePatternType=='ROWCOL'"
},
{
"key": "inputs.startTileCol",
"title": "Start Tile Column: ",
"description": "Specify the index of the first tile column (0 or 1)",
"condition": "model.inputs.filenamePatternType=='ROWCOL'"
},
{
"key": "inputs.startRow",
"title": "Subgrid Start Row: ",
"description": "Specify the start row for the subgrid",
"hidden": true,
"default": 0
},
{
"key": "inputs.startCol",
"title": "Subgrid Start Column: ",
"description": "Specify the start column for the subgrid",
"hidden": true,
"default": 0
},
{
"key": "inputs.extentWidth",
"title": "Subgrid Extent Width: ",
"description": "Specify the width for the subgrid",
"hidden": true,
"bind": "gridWidth"
},
{
"key": "inputs.extentHeight",
"title": "Subgrid Extent Height: ",
"description": "Specify the height for the subgrid",
"hidden": true,
"bind": "gridHeight"
},
{
"key": "inputs.isTimeSlices",
"title": "Has timeslices: ",
"description": "Specify if the dataset has timeslices.",
"default": true
},
{
"key": "inputs.timeSlices",
"title": "Timeslices: ",
"description": "Specify the timeslices to stitch",
"condition": "model.inputs.isTimeSlices==true"
},
{
"key": "inputs.stageRepeatability",
"title": "Stage Repeatability: ",
"description": "Specify the stage repeatability variable used when computing the global optimization",
"default": 0,
"condition": "model.inputs.assembleNoOverlap=='False'"
},
{
"key": "inputs.horizontalOverlap",
"title": "Horizontal Overlap: ",
"description": "Specify the horizontal overlap variable used when computing the global optimization",
"condition": "model.inputs.assembleNoOverlap=='False'"
},
{
"key": "inputs.verticalOverlap",
"title": "Vertical Overlap: ",
"description": "Specify the vertical overlap variable when computing the global optimization",
"condition": "model.inputs.assembleNoOverlap=='False'"
},
{
"key": "inputs.overlapUncertainty",
"title": "Overlap Uncertainty: ",
"description": "Specify the overlap uncertainty variable when computing the global optimization",
"default": 5,
"condition": "model.inputs.assembleNoOverlap=='False'"
},
{
"key": "inputs.programType",
"title": "Stitching Program: ",
"description": "Select which type of program to execute.",
"condition": "model.inputs.assembleNoOverlap=='False'"
},
{
"key" : "fieldsets",
"fieldsets": [
{
"title": "Input images",
"fields": [
"assembleNoOverlap",
"imageDir",
"filenamePatternType",
"filenamePattern"
]
},
{
"title": "Acquisition setup",
"fields": [
"gridOrigin",
"numberingPattern",
"gridWidth",
"gridHeight",
"startTile",
"startTileRow",
"startTileCol",
"isTimeSlices",
"timeSlices"
]
},
{
"title": "Advanced parameters",
"fields": [
"startRow",
"startCol",
"extentWidth",
"extentHeight",
"stageRepeatability",
"horizontalOverlap",
"verticalOverlap",
"overlapUncertainty",
"programType"
]
}
]
}
]
}