-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathVCGPlugin.xml
135 lines (116 loc) · 4.15 KB
/
VCGPlugin.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
<ServerManagerConfiguration>
<ProxyGroup name="filters">
<SourceProxy
name="UniformRandomSamplingFilter"
class="vcgUniformRandomSamplingFilter"
label="Uniform Random Sampling">
<Documentation
long_help=""
short_help="">
</Documentation>
<InputProperty
name="Input"
command="SetInputConnection">
<ProxyGroupDomain name="groups">
<Group name="sources"/>
<Group name="filters"/>
</ProxyGroupDomain>
<DataTypeDomain name="input_type">
<DataType value="vtkDataSet"/>
</DataTypeDomain>
</InputProperty>
<IntVectorProperty name="NumberOfSamples"
command="SetNumberOfSamples"
number_of_elements="1"
default_values="1000">
</IntVectorProperty>
<DoubleVectorProperty name="Radius"
command="SetRadius"
number_of_elements="1"
default_values="0">
</DoubleVectorProperty>
<OutputPort name="Output" />
<Hints>
<ShowInMenu category="VCG" />
</Hints>
</SourceProxy>
<SourceProxy
name="HausdorffDistanceFilter"
class="vcgHausdorffDistanceFilter"
label="Hausdorff Distance">
<Documentation
long_help=""
short_help="">
</Documentation>
<InputProperty
name="SourceData"
command="SetInputConnection">
<ProxyGroupDomain name="groups">
<Group name="sources"/>
<Group name="filters"/>
</ProxyGroupDomain>
<DataTypeDomain name="input_type">
<DataType value="vtkDataSet"/>
</DataTypeDomain>
</InputProperty>
<InputProperty
name="TargetData"
port_index="1"
command="SetInputConnection">
<ProxyGroupDomain name="groups">
<Group name="sources"/>
<Group name="filters"/>
</ProxyGroupDomain>
<DataTypeDomain name="input_type">
<DataType value="vtkDataSet"/>
</DataTypeDomain>
</InputProperty>
<IntVectorProperty name="NumberOfSamples"
command="SetNumberOfSamples"
number_of_elements="1"
default_values="10000">
</IntVectorProperty>
<DoubleVectorProperty name="DiagonalPercent"
command="SetDiagonalPercent"
number_of_elements="1"
default_values="0.1">
<DoubleRangeDomain name="range" min="0.0" max="1.0" />
</DoubleVectorProperty>
<IntVectorProperty name="SampleEdge"
command="SetSampleEdge"
number_of_elements="1"
default_values="0">
<BooleanDomain name="bool" />
</IntVectorProperty>
<IntVectorProperty name="SampleFauxEdge"
command="SetSampleFauxEdge"
number_of_elements="1"
default_values="0">
<BooleanDomain name="bool" />
</IntVectorProperty>
<IntVectorProperty name="SampleFace"
command="SetSampleFace"
number_of_elements="1"
default_values="1">
<BooleanDomain name="bool" />
</IntVectorProperty>
<IntVectorProperty name="SampleVert"
command="SetSampleVert"
number_of_elements="1"
default_values="0">
<BooleanDomain name="bool" />
</IntVectorProperty>
<IntVectorProperty name="SaveSample"
command="SetSaveSample"
number_of_elements="1"
default_values="1">
<BooleanDomain name="bool" />
</IntVectorProperty>
<OutputPort name="OutputPointCloudSource" index="0" />
<OutputPort name="OutputPointCloudTarget" index="1" />
<Hints>
<ShowInMenu category="VCG" />
</Hints>
</SourceProxy>
</ProxyGroup>
</ServerManagerConfiguration>