-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgraphcut_labeling.yml
36 lines (36 loc) · 1.14 KB
/
graphcut_labeling.yml
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
description: |
Labeling generation with Graph-Cuts Optimisation
tet-mesh: { # case of 'graphcut_labeling' applied on a 'tet-mesh' subfolder
executable: {
path: AUTOMATIC_POLYCUBE,
filename: graphcut_labeling,
command_line: '{mesh} compactness={compactness} fidelity={fidelity} sensitivity={sensitivity} angle_of_rotation={angle_of_rotation} gui=false output={labeling}'
},
output_folder: 'graphcut_labeling_{compactness}_{fidelity}_{sensitivity}_{angle_of_rotation}',
arguments: {
input_files: {
mesh: SURFACE_MESH_OBJ
},
output_files: { # 'labeling' is not a part of the command line -> used as suggestion for output file path
labeling: SURFACE_LABELING_TXT
},
others: {
compactness: {
default: 1,
description: compactness coeff
},
fidelity: {
default: 3,
description: fidelity coeff
},
sensitivity: {
default: 1e-9,
description: sensitivity for the facet normals pre-processing
},
angle_of_rotation: {
default: 0.05,
description: angle of rotation for the facet normals pre-processing
}
}
}
}