You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
'For tensor data, one lut must be specified for each type of inversion used in the image (one-tensor, two-tensor, three-tensor).'\
356
-
'For pds, the number of LUTs must match -numpds (it is acceptable to use the same LUT several times - see example, above).'\
354
+
desc='Files containing the lookup tables.'
355
+
'For tensor data, one lut must be specified for each type of inversion used in the image (one-tensor, two-tensor, three-tensor).'
356
+
'For pds, the number of LUTs must match -numpds (it is acceptable to use the same LUT several times - see example, above).'
357
357
'These LUTs may be generated with dtlutgen.')
358
358
359
359
pdf=traits.Enum('bingham', 'watson', 'acg',
360
-
argstr='-pdf %s', position=4, desc=' Specifies the PDF to use. There are three choices:'\
361
-
'watson - The Watson distribution. This distribution is rotationally symmetric.'\
362
-
'bingham - The Bingham distributionn, which allows elliptical probability density contours.'\
360
+
argstr='-pdf %s', position=4, desc=' Specifies the PDF to use. There are three choices:'
361
+
'watson - The Watson distribution. This distribution is rotationally symmetric.'
362
+
'bingham - The Bingham distributionn, which allows elliptical probability density contours.'
363
363
'acg - The Angular Central Gaussian distribution, which also allows elliptical probability density contours', usedefault=True)
364
364
365
365
directmap=traits.Bool(argstr='-directmap', desc="Only applicable when using pds as the inputmodel. Use direct mapping between the eigenvalues and the distribution parameters instead of the log of the eigenvalues.")
t_tail=traits.Enum('left', 'right', 'both', usedefault=True, desc='Can be one of "left", "right", or "both"')
46
-
edge_key=traits.Str('number_of_fibers', usedefault=True, desc='Usually "number_of_fibers, "fiber_length_mean", "fiber_length_std" for matrices made with CMTK' \
46
+
edge_key=traits.Str('number_of_fibers', usedefault=True, desc='Usually "number_of_fibers, "fiber_length_mean", "fiber_length_std" for matrices made with CMTK'
47
47
'Sometimes "weight" or "value" for functional networks.')
48
48
out_nbs_network=File(desc='Output network with edges identified by the NBS')
49
49
out_nbs_pval_network=File(desc='Output network with p-values to weight the edges identified by the NBS')
Copy file name to clipboardExpand all lines: nipype/interfaces/meshfix.py
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -38,7 +38,7 @@ class MeshFixInputSpec(CommandLineInputSpec):
38
38
39
39
uniform_remeshing_steps=traits.Int(argstr='-u %d', requires=['uniform_remeshing_vertices'], desc="Number of steps for uniform remeshing of the whole mesh")
40
40
41
-
uniform_remeshing_vertices=traits.Int(argstr='--vertices %d', requires=['uniform_remeshing_steps'], desc="Constrains the number of vertices." \
41
+
uniform_remeshing_vertices=traits.Int(argstr='--vertices %d', requires=['uniform_remeshing_steps'], desc="Constrains the number of vertices."
42
42
"Must be used with uniform_remeshing_steps")
43
43
44
44
laplacian_smoothing_steps=traits.Int(argstr='--smooth %d', desc="The number of laplacian smoothing steps to apply")
@@ -48,23 +48,23 @@ class MeshFixInputSpec(CommandLineInputSpec):
48
48
# Cutting, decoupling, dilation
49
49
cut_outer=traits.Int(argstr='--cut-outer %d', desc="Remove triangles of 1st that are outside of the 2nd shell.")
50
50
cut_inner=traits.Int(argstr='--cut-inner %d', desc="Remove triangles of 1st that are inside of the 2nd shell. Dilate 2nd by N; Fill holes and keep only 1st afterwards.")
51
-
decouple_inin=traits.Int(argstr='--decouple-inin %d', desc="Treat 1st file as inner, 2nd file as outer component." \
51
+
decouple_inin=traits.Int(argstr='--decouple-inin %d', desc="Treat 1st file as inner, 2nd file as outer component."
52
52
"Resolve overlaps by moving inners triangles inwards. Constrain the min distance between the components > d.")
53
-
decouple_outin=traits.Int(argstr='--decouple-outin %d', desc="Treat 1st file as outer, 2nd file as inner component." \
53
+
decouple_outin=traits.Int(argstr='--decouple-outin %d', desc="Treat 1st file as outer, 2nd file as inner component."
54
54
"Resolve overlaps by moving outers triangles inwards. Constrain the min distance between the components > d.")
55
-
decouple_outout=traits.Int(argstr='--decouple-outout %d', desc="Treat 1st file as outer, 2nd file as inner component." \
55
+
decouple_outout=traits.Int(argstr='--decouple-outout %d', desc="Treat 1st file as outer, 2nd file as inner component."
56
56
"Resolve overlaps by moving outers triangles outwards. Constrain the min distance between the components > d.")
desc='Similar to finetuning_inwards, but ensures minimal distance in the other direction')
61
-
finetuning_distance=traits.Float(argstr='%f', requires=['finetuning_substeps'], desc="Used to fine-tune the minimal distance between surfaces." \
61
+
finetuning_distance=traits.Float(argstr='%f', requires=['finetuning_substeps'], desc="Used to fine-tune the minimal distance between surfaces."
62
62
"A minimal distance d is ensured, and reached in n substeps. When using the surfaces for subsequent volume meshing by gmsh, this step prevent too flat tetrahedra2)")
63
-
finetuning_substeps=traits.Int(argstr='%d', requires=['finetuning_distance'], desc="Used to fine-tune the minimal distance between surfaces." \
63
+
finetuning_substeps=traits.Int(argstr='%d', requires=['finetuning_distance'], desc="Used to fine-tune the minimal distance between surfaces."
64
64
"A minimal distance d is ensured, and reached in n substeps. When using the surfaces for subsequent volume meshing by gmsh, this step prevent too flat tetrahedra2)")
65
65
66
66
dilation=traits.Int(argstr='--dilate %d', desc="Dilate the surface by d. d < 0 means shrinking.")
67
-
set_intersections_to_one=traits.Bool(argstr='--intersect', desc="If the mesh contains intersections, return value = 1." \
67
+
set_intersections_to_one=traits.Bool(argstr='--intersect', desc="If the mesh contains intersections, return value = 1."
68
68
"If saved in gmsh format, intersections will be highlighted.")
0 commit comments