subset_dti-methods | R Documentation |
Subset DTI data based on b-values #'
subset_dti(
img,
bvals,
bvecs,
b_step = 1,
maximum = Inf,
shells = NULL,
verbose = TRUE,
...
)
## S4 method for signature 'nifti'
subset_dti(
img,
bvals,
bvecs,
b_step = 1,
maximum = Inf,
shells = NULL,
verbose = TRUE,
...
)
## S4 method for signature 'ANY'
subset_dti(
img,
bvals,
bvecs,
b_step = 1,
maximum = Inf,
shells = NULL,
verbose = TRUE,
...
)
## S4 method for signature 'character'
subset_dti(
img,
bvals,
bvecs,
b_step = 1,
maximum = Inf,
shells = NULL,
verbose = TRUE,
...
)
## S4 method for signature 'list'
subset_dti(
img,
bvals,
bvecs,
b_step = 1,
maximum = Inf,
shells = NULL,
verbose = TRUE,
...
)
img |
character or |
bvals |
filename of b-values (assuming 1 row) |
bvecs |
filename of b-vectors (assuming 3 rows) |
b_step |
step of b-values to round to |
maximum |
maximum b-value threshold |
shells |
Shells to keep (after rounding) |
verbose |
print diagnostic messages |
... |
options passed to |
List of filenames of image, b-values, and b-vectors that were subsetted.
John Muschelli muschellij2@gmail.com
## Not run:
img = "~/Downloads/data.nii.gz"
bvals = "~/Downloads/bvals"
bvecs = "~/Downloads/bvals"
verbose = TRUE
b_step = 50
maximum = 1500
shells = NULL
sub = subset_dti(img = img, bvals = bvals, bvecs = bvecs,
maximum = 1500,
b_step = 50)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.