forked from freesurfer/freesurfer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: clear up commandline confusion in mri_segment
- Loading branch information
Showing
2 changed files
with
30 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,17 @@ | ||
<?xml version="1.0" encoding="ISO-8859-1"?> | ||
<!DOCTYPE help [ | ||
<!ENTITY lt "#38;#60;"> | ||
<!ENTITY gt ">"> | ||
<!ENTITY amp "&#38;"> | ||
<!ELEMENT help (name , synopsis , description , arguments+ , outputs* , example* , bugs* , reporting* , see-also*)*> | ||
<!ELEMENT name (#PCDATA)> | ||
<!ELEMENT synopsis (#PCDATA)> | ||
<!ELEMENT description (#PCDATA)> | ||
<!ELEMENT arguments (positional* , required-flagged* , optional-flagged*)*> | ||
<!ELEMENT positional (intro* , argument* , explanation*)*> | ||
<!ELEMENT required-flagged (intro* , argument* , explanation*)*> | ||
<!ELEMENT optional-flagged (intro* , argument* , explanation*)*> | ||
<!ELEMENT intro (#PCDATA)> | ||
<!ELEMENT argument (#PCDATA)> | ||
<!ELEMENT explanation (#PCDATA)> | ||
<!ELEMENT outputs (output* , explanation*)> | ||
<!ELEMENT output (#PCDATA)> | ||
<!ELEMENT example (#PCDATA)> | ||
<!ELEMENT bugs (#PCDATA)> | ||
<!ELEMENT reporting (#PCDATA)> | ||
<!ELEMENT see-also (#PCDATA)> | ||
]> | ||
|
||
<help> | ||
|
||
<name>mri_segment</name> | ||
<synopsis>mri_segment <classifierfile> <invol> <outvol></synopsis> | ||
<description>This program segments white matter from the input volume. The input volume should be normalized such that white matter voxels are ~110-valued, and the volume is conformed to 256^3. This can be accomplished by: mri_normalize invol outvol -conform</description> | ||
<synopsis>mri_segment [options] <invol> <outvol></synopsis> | ||
<description>This program segments white matter from the input volume. The input volume should be normalized such that white matter voxels are ~110-valued, and the volume is conformed to 256^3. This can be accomplished by `mri_normalize -conform invol outvol`. Note that flagged options must be provided before positional arguments.</description> | ||
|
||
<arguments> | ||
<positional> | ||
<argument><classifierfile></argument> | ||
<explanation>classifier file</explanation> | ||
<argument><invol></argument> | ||
<explanation>input volume</explanation> | ||
<argument><outvol></argument> | ||
<explanation>output volume</explanation> | ||
</positional> | ||
<required-flagged> | ||
</required-flagged> | ||
|
||
<optional-flagged> | ||
<argument>-no1d_remove <s>;</argument> | ||
<explanation>don't run code that removes 1D strands from segmentation</explanation> | ||
|
@@ -59,7 +34,7 @@ | |
<argument>-ghi,-gray_hi <h></argument> | ||
<explanation>set the gray matter high limit (default=100.000)</explanation> | ||
<argument>-wlo,-wm_low <l></argument> | ||
<explanation>set the white matter low limit (default=90.000)</explanation> | ||
<explanation>set the white matter low limit (default=80.000)</explanation> | ||
<argument>-wm_low_factor <f></argument> | ||
<explanation>wm_low = f*gray_mean + (1-f)*white_mean;</explanation> | ||
<argument>-whi,-wm_hi <h></argument> | ||
|
@@ -94,7 +69,7 @@ | |
<explanation>set len for plane of least variance (default=3)</explanation> | ||
<argument>-dat datfile</argument> | ||
<explanation>set datfile (default is segment.dat)</explanation> | ||
<argument>-seg segmenationvolume SegErodeMM WMBiasFactor</argument> | ||
<argument>-seg segmenation volume SegErodeMM WMBiasFactor</argument> | ||
<explanation>Uses segmentation (eg, aseg.presurf.mgz) to set thresholds</explanation> | ||
<argument>-diagno diagno</argument> | ||
<explanation>Set diagnostic number</explanation> | ||
|
@@ -106,10 +81,5 @@ | |
<explanation>usage</explanation> | ||
</optional-flagged> | ||
</arguments> | ||
<outputs> | ||
<output><outvol></output> | ||
<explanation>output volume</explanation> | ||
</outputs> | ||
<reporting>Report bugs to <[email protected]></reporting> | ||
</help> | ||
|
||
</help> |