antsImageWrite.Rd
Write an image object of S4 class antsImage
to a file.
antsImageWrite(image, filename, as.tensor = FALSE)
0 – Success
1 – Failure
fn <- getANTsRData("r16")
fi <- antsImageRead(fn)
antsImageWrite(fi, tempfile(fileext = ".nii.gz"))
antsImageWrite(fi, tempfile(fileext = ".mha"))
antsImageWrite(fi, tempfile(fileext = ".nrrd"))
antsImageWrite(
antsImageClone(fi, "unsigned char"),
tempfile(fileext = ".jpg")
)
antsImageWrite(
antsImageClone(fi, "float"),
tempfile(fileext = ".tif")
)
antsImageWrite(fi, tempfile(fileext = ".mrc"))
antsImageWrite(fi, tempfile(fileext = ".hd5"))
components(fi) <- 0L
antsImageWrite(fi, tempfile(fileext = ".nii.gz"))