read.nrrd
reads data into a raw array. If you wish to
generate a im3d
object that includes spatial calibration (but
is limited to representing 3D data) then you should use
read.im3d
.
nrrd.datafiles
returns the path to the separate data
files listed in a detached NRRD header file.
read.nrrd(
file,
origin = NULL,
ReadData = TRUE,
AttachFullHeader = TRUE,
Verbose = FALSE,
ReadByteAsRaw = c("unsigned", "all", "none")
)
read.nrrd.header(file, Verbose = FALSE)
nrrd.datafiles(file, full.names = TRUE)
Path to a nrrd (or a connection for read.nrrd.header
)
Add a user specified origin (x,y,z) to the returned object
When FALSE just return attributes (i.e. the nrrd header)
Include the full nrrd header as an attribute of the returned object (default TRUE)
Status messages while reading
Either a character vector or a logical vector specifying
when R should read 8 bit data as an R raw
vector rather than
integer
vector.
Whether to return the full paths to each data file (by
analogy with list.files
)
An array
object, optionally with attributes from the nrrd
header.
A list with elements for the key nrrd header fields
ReadByteAsRaw="unsigned"
(the default) only reads unsigned
byte data as a raw array. This saves quite a bit of space and still allows
data to be used for logical indexing.
Other nrrd:
is.nrrd()
,
nrrd.voxdims()
,
write.nrrd()