write_nifti | R Documentation |
Writes out NIfTI files for multiple formats. Currently,
for nifti
objects and niftiImage
objects from RNifti
write_nifti(nim, filename, ...)
nim |
Container for NIfTI Image |
filename |
Filename of image to be written out |
... |
additional arguments, to be passed to |
Output from NIfTI writer
set.seed(5)
dims = rep(10, 4)
arr = array(rpois(prod(dims), lambda = 2), dim = dims)
nim = oro.nifti::nifti(arr)
tfile = tempfile(fileext = ".nii.gz")
write_nifti(nim, tfile)
rimg = RNifti::readNifti(tfile)
write_nifti(rimg, tfile)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.