@@ -114,6 +114,23 @@ class LabelFusion(NiftySegCommand):
114
114
"""Interface for executable seg_LabelFusion from NiftySeg platform using
115
115
type STEPS as classifier Fusion.
116
116
117
+ This executable implements 4 fusion strategies (-STEPS, -STAPLE, -MV or
118
+ - SBA), all of them using either a global (-GNCC), ROI-based (-ROINCC),
119
+ local (-LNCC) or no image similarity (-ALL). Combinations of fusion
120
+ algorithms and similarity metrics give rise to different variants of known
121
+ algorithms. As an example, using LNCC and MV as options will run a locally
122
+ weighted voting strategy with LNCC derived weights, while using STAPLE and
123
+ LNCC is equivalent to running STEPS as per its original formulation.
124
+ A few other options pertaining the use of an MRF (-MRF beta), the initial
125
+ sensitivity and specificity estimates and the use of only non-consensus
126
+ voxels (-unc) for the STAPLE and STEPS algorithm. All processing can be
127
+ masked (-mask), greatly reducing memory consumption.
128
+
129
+ As an example, the command to use STEPS should be:
130
+ seg_LabFusion -in 4D_Propragated_Labels_to_fuse.nii -out \
131
+ FusedSegmentation.nii -STEPS 2 15 TargetImage.nii \
132
+ 4D_Propagated_Intensities.nii
133
+
117
134
For source code, see http://cmictig.cs.ucl.ac.uk/wiki/index.php/NiftySeg
118
135
For Documentation, see:
119
136
http://cmictig.cs.ucl.ac.uk/wiki/index.php/NiftySeg_documentation
0 commit comments