forked from amethyst86/AirwaySegmenter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDrawLines.xml
51 lines (51 loc) · 1.9 KB
/
DrawLines.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
<?xml version="1.0" encoding="utf-8"?>
<executable>
<category>Filtering</category>
<title>Draw Lines</title>
<description><![CDATA[Draws a series of line segments between consective points.]]></description>
<version>1.0</version>
<documentation-url>TODO</documentation-url>
<license>Apache 2.0</license>
<contributor>Cory Quammen</contributor>
<acknowledgements><![CDATA[TODO]]></acknowledgements>
<parameters>
<label>Input/Output</label>
<description><![CDATA[Input/Output Parameters]]></description>
<image>
<name>inputImage</name>
<label>Input Image</label>
<channel>input</channel>
<index>0</index>
<default>None</default>
<description><![CDATA[Image into which the line segments should be drawn.]]></description>
</image>
<image>
<name>outputImage</name>
<label>Output Image</label>
<channel>output</channel>
<index>2</index>
<default>None</default>
<description><![CDATA[Result of the line drawing operation.]]></description>
</image>
<point multiple="true" coordinateSystem="ras">
<name>endpoints</name>
<label>Endpoints</label>
<longflag>--endpoint</longflag>
<default>None</default>
</point>
<double>
<name>radius</name>
<label>Radius</label>
<longflag>--radius</longflag>
<description><![CDATA[Radius of line segment (mm).]]></description>
<default>3.0</default>
</double>
<double>
<name>value</name>
<label>Value</label>
<longflag>--value</longflag>
<description><![CDATA[Value to use when drawing line.]]></description>
<default>0.0</default>
</double>
</parameters>
</executable>