niftiHeader | R Documentation |
These functions extract the contents of a NIfTI-1 or ANALYZE-7.5 header, closely approximating how it is (or would be) stored on disk. Defaults will be used where information is missing, but no processing is performed on the metadata.
niftiHeader(image = list(), unused = FALSE)
analyzeHeader(image = list())
## S3 method for class 'niftiHeader'
print(x, ...)
## S3 method for class 'analyzeHeader'
print(x, ...)
image |
An image, in any acceptable form (see |
unused |
Logical value. If |
x |
A |
... |
Ignored. |
The NIfTI-1 standard was originally formulated as a roughly backwards- compatible improvement on the ANALYZE format. Both formats use a binary header structure of 348 bytes, but the field names and their interpretation is often non-equivalent. These functions dump these fields, without regard to whether or not the result makes proper sense.
dumpNifti
is an alias of niftiHeader
, but the former is now
soft-deprecated.
For niftiHeader
, a list of class "niftiHeader"
, with
named components corresponding to the elements in a raw NIfTI-1 header.
For analyzeHeader
, the equivalent for ANALYZE-7.5.
Several medical image analysis packages, such as SPM and FSL, use the
ANALYZE originator
field to store a coordinate origin. This
interpretation is also returned, in the origin
field.
Both of these functions call asNifti
on their arguments to
coerce it to NIfTI, except in one specific circumstance: when
analyzeHeader
is called with a single-element character-mode
argument that is not an "internalImage"
object. In this case the
string is taken to be a path and the header is reported as stored on disk.
This is because otherwise the header may be changed by the process of
converting it to NIfTI and back.
Jon Clayden <code@clayden.org>
The NIfTI-1 standard (https://www.nitrc.org/docman/view.php/26/64/nifti1.h).
niftiVersion
niftiHeader(system.file("extdata", "example.nii.gz", package="RNifti"))
# Default header for a standard R array
niftiHeader(array(0L, dim=c(10,10)))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.