-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQIsModule.xml
335 lines (335 loc) · 11.2 KB
/
QIsModule.xml
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
<?xml version="1.0" encoding="utf-8"?>
<executable>
<category>Quantification</category>
<title>Quantitative Indices</title>
<description><![CDATA[Calculate quantitative indices for a specified label. Requires PET and label images as input.]]></description>
<version>0.1.0</version>
<documentation-url>http://wiki.slicer.org/slicerWiki/index.php/Documentation/4.2/Modules/quantitativeIndices</documentation-url>
<license/>
<contributor>Ethan Ulrich</contributor>
<acknowledgements/>
<parameters>
<label>Input Images</label>
<description><![CDATA[Input images]]></description>
<image type="scalar">
<name>PET_Image</name>
<label>PET Image</label>
<channel>input</channel>
<index>0</index>
<description><![CDATA[PET Image File]]></description>
</image>
<image type="label">
<name>Label_Image</name>
<label>Label Image</label>
<channel>input</channel>
<index>1</index>
<description><![CDATA[Label Map Image File]]></description>
</image>
<integer>
<name>Label_Value</name>
<label>Label Value</label>
<description>Label Map value for region to be quantified</description>
<index>2</index>
<default>1</default>
<constraints>
<minimum>0</minimum>
<maximum>100</maximum>
<step>1</step>
</constraints>
</integer>
</parameters>
<parameters>
<label>Quantitative Indices Selection</label>
<description><![CDATA[Indices to be calculated]]></description>
<boolean>
<name>Mean</name>
<label>Mean</label>
<longflag>--mean</longflag>
<description><![CDATA[Mean value in region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Variance</name>
<label>Variance</label>
<longflag>--variance</longflag>
<description><![CDATA[Variance in region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Min</name>
<label>Min</label>
<longflag>--min</longflag>
<description><![CDATA[Minimum value in region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Max</name>
<label>Max</label>
<longflag>--max</longflag>
<description><![CDATA[Maximum value in region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>RMS</name>
<label>RMS</label>
<longflag>--rms</longflag>
<description><![CDATA[Root-mean-square value in region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Volume</name>
<label>Volume</label>
<longflag>--volume</longflag>
<description><![CDATA[Volume of region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Quart1</name>
<label>1st Quartile</label>
<longflag>--quart1</longflag>
<description><![CDATA[First quartile in region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Median</name>
<label>Median</label>
<longflag>--median</longflag>
<description><![CDATA[Median value in region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Quart3</name>
<label>3rd Quartile</label>
<longflag>--quart3</longflag>
<description><![CDATA[Third quartile in region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Adj</name>
<label>Upper Adjacent</label>
<longflag>--adj</longflag>
<description><![CDATA[Upper adjacent value in region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>MTV</name>
<label>MTV</label>
<longflag>--mtv</longflag>
<description><![CDATA[Metabolic tumor volume]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Gly1</name>
<label>Glycolysis Q1</label>
<longflag>--gly1</longflag>
<description><![CDATA[Metabolic tumor volume in 1st quarter of distribution]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Gly2</name>
<label>Glycolysis Q2</label>
<longflag>--gly2</longflag>
<description><![CDATA[Metabolic tumor volume in 2nd quarter of distribution]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Gly3</name>
<label>Glycolysis Q3</label>
<longflag>--gly3</longflag>
<description><![CDATA[Metabolic tumor volume in 3rd quarter of distribution]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Gly4</name>
<label>Glycolysis Q4</label>
<longflag>--gly4</longflag>
<description><![CDATA[Metabolic tumor volume in 4th quarter of distribution]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Q1</name>
<label>Q1 Distribution</label>
<longflag>--q1</longflag>
<description><![CDATA[1st quarter distribution of range in region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Q2</name>
<label>Q2 Distribution</label>
<longflag>--q2</longflag>
<description><![CDATA[2nd quarter distribution of range in region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Q3</name>
<label>Q3 Distribution</label>
<longflag>--q3</longflag>
<description><![CDATA[3rd quarter distribution of range in region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Q4</name>
<label>Q4 Distribution</label>
<longflag>--q4</longflag>
<description><![CDATA[4th quarter distribution of range in region of interest]]></description>
<default>false</default>
</boolean>
<boolean>
<name>SAM</name>
<label>SAM</label>
<longflag>--sam</longflag>
<description><![CDATA[Standardized added metabolic activity]]></description>
<default>false</default>
</boolean>
<boolean>
<name>SAMBG</name>
<label>SAM mean background</label>
<longflag>--sambg</longflag>
<description><![CDATA[Standardized added metabolic activity mean background]]></description>
<default>false</default>
</boolean>
<boolean>
<name>Peak</name>
<label>Peak</label>
<longflag>--peak</longflag>
<description><![CDATA[Peak value in region of interest]]></description>
<default>false</default>
</boolean>
</parameters>
<parameters advanced='true'>
<label>Quantitative Indices Output</label>
<description><![CDATA[Output of quantitative indices calculation]]></description>
<string>
<name>Mean_s</name>
<label>Mean</label>
<channel>output</channel>
<description><![CDATA[Mean value in region of interest]]></description>
</string>
<string>
<name>Variance_s</name>
<label>Variance</label>
<channel>output</channel>
<description><![CDATA[Variance in region of interest]]></description>
</string>
<string>
<name>Min_s</name>
<label>Min</label>
<channel>output</channel>
<description><![CDATA[Minimum value in region of interest]]></description>
</string>
<string>
<name>Max_s</name>
<label>Max</label>
<channel>output</channel>
<description><![CDATA[Maximum value in region of interest]]></description>
</string>
<string>
<name>RMS_s</name>
<label>RMS</label>
<channel>output</channel>
<description><![CDATA[Root-mean-square value in region of interest]]></description>
</string>
<string>
<name>Volume_s</name>
<label>Volume</label>
<channel>output</channel>
<description><![CDATA[Volume of region of interest]]></description>
</string>
<string>
<name>Quart1_s</name>
<label>1st Quartile</label>
<channel>output</channel>
<description><![CDATA[First quartile in region of interest]]></description>
</string>
<string>
<name>Median_s</name>
<label>Median</label>
<channel>output</channel>
<description><![CDATA[Median value in region of interest]]></description>
</string>
<string>
<name>Quart3_s</name>
<label>3rd Quartile</label>
<channel>output</channel>
<description><![CDATA[Third quartile in region of interest]]></description>
</string>
<string>
<name>Adj_s</name>
<label>Upper Adjacent</label>
<channel>output</channel>
<description><![CDATA[Upper adjacent value in region of interest]]></description>
</string>
<string>
<name>MTV_s</name>
<label>MTV</label>
<channel>output</channel>
<description><![CDATA[Metabolic tumor volume]]></description>
</string>
<string>
<name>Gly1_s</name>
<label>Glycolysis Q1</label>
<channel>output</channel>
<description><![CDATA[Metabolic tumor volume in 1st quarter of distribution]]></description>
</string>
<string>
<name>Gly2_s</name>
<label>Glycolysis Q2</label>
<channel>output</channel>
<description><![CDATA[Metabolic tumor volume in 2nd quarter of distribution]]></description>
</string>
<string>
<name>Gly3_s</name>
<label>Glycolysis Q3</label>
<channel>output</channel>
<description><![CDATA[Metabolic tumor volume in 3rd quarter of distribution]]></description>
</string>
<string>
<name>Gly4_s</name>
<label>Glycolysis Q4</label>
<channel>output</channel>
<description><![CDATA[Metabolic tumor volume in 4th quarter of distribution]]></description>
</string>
<string>
<name>Q1_s</name>
<label>Q1 Distribution</label>
<channel>output</channel>
<description><![CDATA[1st quarter distribution of range in region of interest]]></description>
</string>
<string>
<name>Q2_s</name>
<label>Q2 Distribution</label>
<channel>output</channel>
<description><![CDATA[2nd quarter distribution of range in region of interest]]></description>
</string>
<string>
<name>Q3_s</name>
<label>Q3 Distribution</label>
<channel>output</channel>
<description><![CDATA[3rd quarter distribution of range in region of interest]]></description>
</string>
<string>
<name>Q4_s</name>
<label>Q4 Distribution</label>
<channel>output</channel>
<description><![CDATA[4th quarter distribution of range in region of interest]]></description>
</string>
<string>
<name>SAM_s</name>
<label>SAM</label>
<channel>output</channel>
<description><![CDATA[Standardized added metabolic activity]]></description>
</string>
<string>
<name>SAMBG_s</name>
<label>SAM mean background</label>
<channel>output</channel>
<description><![CDATA[Standardized added metabolic activity mean background]]></description>
</string>
<string>
<name>Peak_s</name>
<label>Peak</label>
<channel>output</channel>
<description><![CDATA[Peak value in region of interest]]></description>
</string>
</parameters>
</executable>