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
in_file=File(desc='ANAT is the volume to segment',
1593
+
argstr='-anat %s',
1594
+
position=-1,
1595
+
mandatory=True,
1596
+
exists=True,
1597
+
copyfile=True)
1598
+
1599
+
mask=traits.Str(desc='only non-zero voxels in mask are analyzed. mask can either be a dataset or the string \'AUTO\' which would use AFNI\'s automask function to create the mask.',
1600
+
argstr='-mask %s',
1601
+
position=-2,
1602
+
mandatory=True,
1603
+
exists=True)
1604
+
1605
+
blur_meth=traits.Enum('BFT', 'BIM',
1606
+
argstr='-blur_meth %s',
1607
+
desc='set the blurring method for bias field estimation')
1608
+
1609
+
bias_fwhm=traits.Float(desc='The amount of blurring used when estimating the field bias with the Wells method',
1610
+
argstr='-bias_fwhm %f')
1611
+
1612
+
classes=traits.Str(desc='CLASS_STRING is a semicolon delimited string of class labels',
1613
+
argstr='-classes %s')
1614
+
1615
+
bmrf=traits.Float(desc='Weighting factor controlling spatial homogeneity of the classifications',
1616
+
argstr='-bmrf %f')
1617
+
1618
+
bias_classes=traits.Str(desc='A semcolon demlimited string of classes that contribute to the estimation of the bias field',
1619
+
argstr='-bias_classes %s')
1620
+
1621
+
prefix=traits.Str(desc='the prefix for the output folder containing all output volumes',
1622
+
argstr='-prefix %s')
1623
+
1624
+
mixfrac=traits.Str(desc='MIXFRAC sets up the volume-wide (within mask) tissue fractions while initializing the segmentation (see IGNORE for exception)',
1625
+
argstr='-mixfrac %s')
1626
+
1627
+
mixfloor=traits.Float(desc='Set the minimum value for any class\'s mixing fraction',
1628
+
argstr='-mixfloor %f')
1629
+
1630
+
main_N=traits.Int(desc='Number of iterations to perform.',
1631
+
argstr='-main_N %d')
1632
+
1633
+
1634
+
classSeg(AFNICommandBase):
1635
+
"""3dSeg segments brain volumes into tissue classes. The program allows
1636
+
for adding a variety of global and voxelwise priors. However for the
1637
+
moment, only mixing fractions and MRF are documented.
1638
+
1639
+
For complete details, see the `3dSeg Documentation.
0 commit comments