Skip to content
Snippets Groups Projects
Commit 513c91cb authored by Saad Jbabdi's avatar Saad Jbabdi
Browse files

sampvox

parent 9a7cfbe7
No related branches found
No related tags found
No related merge requests found
...@@ -64,6 +64,7 @@ class probtrackxOptions { ...@@ -64,6 +64,7 @@ class probtrackxOptions {
Option<float> distthresh; Option<float> distthresh;
Option<float> c_thr; Option<float> c_thr;
FmribOption<float> fibthresh; FmribOption<float> fibthresh;
Option<bool> sampvox;
Option<float> steplength; Option<float> steplength;
Option<bool> loopcheck; Option<bool> loopcheck;
Option<bool> usef; Option<bool> usef;
...@@ -207,6 +208,9 @@ class probtrackxOptions { ...@@ -207,6 +208,9 @@ class probtrackxOptions {
fibthresh(string("--fibthresh"), 0.01, fibthresh(string("--fibthresh"), 0.01,
string("Volume fraction before subsidary fibre orientations are considered - default=0.01"), string("Volume fraction before subsidary fibre orientations are considered - default=0.01"),
false, requires_argument), false, requires_argument),
sampvox(string("--sampvox"), false,
string("Sample random points within seed voxels"),
false, no_argument),
steplength(string("--steplength"), 0.5, steplength(string("--steplength"), 0.5,
string("Steplength in mm - default=0.5"), string("Steplength in mm - default=0.5"),
false, requires_argument), false, requires_argument),
...@@ -275,6 +279,7 @@ class probtrackxOptions { ...@@ -275,6 +279,7 @@ class probtrackxOptions {
options.add(distthresh); options.add(distthresh);
options.add(c_thr); options.add(c_thr);
options.add(fibthresh); options.add(fibthresh);
options.add(sampvox);
options.add(steplength); options.add(steplength);
options.add(loopcheck); options.add(loopcheck);
options.add(usef); options.add(usef);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment