RNifti (version 1.3.0)

writeNifti: Write a NIfTI or ANALYZE format file

Description

These functions write an image to NIfTI-1, NIfTI-2 or ANALYZE-7.5 format, using the standard NIfTI C library.

Usage

writeNifti(image, file, template = NULL, datatype = "auto", version = 1)

writeAnalyze(image, file, template = NULL, datatype = "auto")

Arguments

image

An image, in any acceptable form (see asNifti).

file

A character string containing a file name.

template

An optional template object to derive NIfTI-1 properties from. Passed to asNifti if image is an array.

datatype

The NIfTI datatype to use when writing the data out. The default, "auto" uses the R type or, for internal images, the original datatype. Other possibilities are "float", "int16", etc., which may be preferred to reduce file size. However, no checks are done to ensure that the coercion maintains precision.

version

An integer (1 or 2) giving the NIfTI file format version to use. Version 2 is usually only needed for very large images or where metadata needs to be stored with high precision. The types available for storing the pixel data are the same in both cases.

Value

An invisible, named character vector giving the image and header file names written to.

References

The NIfTI-1 standard (http://www.nitrc.org/docman/view.php/26/64/nifti1.h).

See Also

readNifti, asNifti

Examples

Run this code
# NOT RUN {
writeNifti(im, "image.nii.gz", datatype="float")
# }
# NOT RUN {
# }

Run the code above in your browser using DataCamp Workspace