| readNifti {RNifti} | R Documentation |
This function reads one or more NIfTI-1 files into R, using the standard NIfTI-1 C library.
readNifti(file, internal = FALSE)
file |
A character vector of file names. |
internal |
Logical value. If |
An array or internal image, with class "niftiImage", and
possibly also "internalImage".
If the internal argument is FALSE (the default), the
data type of the image pointer will be set to match one of R's native
numeric data types, i.e., 32-bit signed integer or 64-bit double-precision
floating-point. In these circumstances the data type reported by the
dumpNifti function will therefore not, in general, match
the storage type used in the file. See also the datatype argument
to writeNifti.
Jon Clayden <code@clayden.org>
The NIfTI-1 standard (http://www.nitrc.org/docman/view.php/26/64/nifti1.h).
path <- system.file("extdata", "example.nii.gz", package="RNifti")
readNifti(path)
readNifti(path, internal=TRUE)