-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathplugin.json
More file actions
94 lines (94 loc) · 2.82 KB
/
plugin.json
File metadata and controls
94 lines (94 loc) · 2.82 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
{
"name": "Apply Flatfield",
"version": "2.1.0-dev0",
"title": "Apply Flatfield",
"description": "Apply a flatfield algorithm to a collection of images.",
"author": "Nick Schaub (Nick.Schaub@nih.gov), Najib Ishaq (najib.ishaq@nih.gov)",
"institution": "National Center for Advancing Translational Sciences, National Institutes of Health",
"repository": "https://github.com/labshare/polus-plugins",
"website": "https://ncats.nih.gov/preclinical/core/informatics",
"citation": "",
"containerId": "polusai/apply-flatfield-tool:2.1.0-dev0",
"baseCommand": [
"python3",
"-m",
"polus.images.transforms.images.apply_flatfield"
],
"inputs": [
{
"name": "imgDir",
"type": "collection",
"description": "Input image collection to be processed by this plugin",
"required": true
},
{
"name": "imgPattern",
"type": "string",
"description": "Filename pattern used to separate data and match with flatfied files",
"required": true
},
{
"name": "ffDir",
"type": "collection",
"description": "Image collection containing flatfield and/or darkfield images",
"required": true
},
{
"name": "ffPattern",
"type": "string",
"description": "Filename pattern used to match flatfield files to image files",
"required": true
},
{
"name": "dfPattern",
"type": "string",
"description": "Filename pattern used to match darkfield files to image files",
"required": false
},
{
"name": "preview",
"type": "boolean",
"description": "Preview the output images' names without actually running computation",
"required": false
}
],
"outputs": [
{
"name": "outDir",
"type": "collection",
"description": "Output collection"
}
],
"ui": [
{
"key": "inputs.imgDir",
"title": "Images to correct",
"description": "Input image collection to be processed by this plugin"
},
{
"key": "inputs.imgPattern",
"title": "Image pattern",
"description": "Filename pattern used to separate data and match with flatfield files"
},
{
"key": "inputs.ffDir",
"title": "Background images (flatfield/darkfield)",
"description": "Image collection containing flatfield and/or darkfield images"
},
{
"key": "inputs.ffPattern",
"title": "Flatfield file pattern",
"description": "Filename pattern used to match flatfield files to image files"
},
{
"key": "inputs.dfPattern",
"title": "Darkfield file pattern",
"description": "Filename pattern used to match darkfield files to image files"
},
{
"key": "inputs.preview",
"title": "Preview Output",
"description": "Preview the output images' names without actually running computation"
}
]
}