Learn R Programming

ANTsR (version 0.3.1)

antsImageClone: Clone an antsImage.

Description

Clone an image object of S4 class antsImage. N.B.: You cannot use a <- img because the R assignment operator does not deal with the underlying C++ pointers.

Usage

antsImageClone(in_image, out_pixeltype = in_image@pixeltype)

Arguments

in_image

image object of S4 class antsImage to be cloned.

out_pixeltype

C++ datatype to be used to represent the pixels in the output image. Allowed values: double, float, unsigned int, unsigned char.

Value

object of class antsImage

Examples

Run this code
# NOT RUN {
img <- antsImageRead(getANTsRData("r16"), 2)
img2 <- antsImageClone(img)
img.int <- antsImageClone(img , "unsigned int")
# }

Run the code above in your browser using DataLab