-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefault.groovy
More file actions
98 lines (87 loc) · 2.02 KB
/
default.groovy
File metadata and controls
98 lines (87 loc) · 2.02 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
95
96
97
98
speaker {
smooth {
// presmoothing of scan
sigma = 1
// smoothing of structure tensor
rho = 1
// contrast parameter
lambda = 0.1
// explicit steps to take
iter = 20
// time step size
stepSize = 0.12
}
segmentTongue{
thresholdingType = "OTSU"
}
segmentPalate{
thresholdingType = "OTSU"
}
purgeCloud{
maxDistance = 1
sideDistance = 140
}
matchTongue {
// size of neighborhood for smoothness term
geodesicNeighbors = 2
// chosen weight for smoothness term
smoothnessTermWeight = 10
smoothnessTermWeightEnd = 6
meshSmoothIterations = 1
// weight for landmark term
landmarkTermWeight = 0.1
landmarkTermWeightEnd = 0
// iterations
iter = 100
searchRadius = 5
maxDistance = 5
// allowed maximum angle difference of normal of nearest neighbor
maxAngle = 60
}
matchPalate {
// size of neighborhood for smoothness term
geodesicNeighbors = 2
// chosen weight for smoothness term
smoothnessTermWeight = 10
smoothnessTermWeightEnd = 6
meshSmoothIterations = 1
// weight for landmark term
landmarkTermWeight = 10
// do not deactivate landmark term -> avoids "shrinking"
landmarkTermWeightEnd = 10
// allowed maximum angle difference of normal of nearest neighbor
maxAngle = 60
// iterations
iter = 40
searchRadius = 4
maxDistance = 4
}
reconstructPalate{
iterationAmount = 20
convergenceFactor = 10000000
projectedGradientTolerance = 0.00001
maxFunctionEvals = 1000
}
fitTongue{
searchRadius = 4
iter = 10
priorSize = 0.5
meshSmoothIterations = 1
convergenceFactor = 10000000
projectedGradientTolerance = 0.00001
maxFunctionEvals = 1000
maxAngle = 60
maxDistance = 4
}
fitPalate{
searchRadius = 4
iter = 10
priorSize = 1
meshSmoothIterations = 1
convergenceFactor = 10000000
projectedGradientTolerance = 0.00001
maxFunctionEvals = 1000
maxAngle = 60
maxDistance = 4
}
}