Set a pixel value at an index in an 'antsImage'.

antsSetPixels(x, i = NA, j = NA, k = NA, l = NA, value)

Arguments

x

Image object of S4 class 'antsImage'.

i

the slowest moving index to the image

j

the next slowest moving index to the image, similar for k ( 2d )

k

the next slowest moving index to the image ( 3d )

l

the next slowest moving index to the image ( 4d )

value

the value to place at this location

Value

array of pixel values

Examples

img <- makeImage(c(10, 10), rnorm(100))
antsSetPixels(img, 2, 3, value = Inf)
#> antsImage
#>   Pixel Type          : float 
#>   Components Per Pixel: 1 
#>   Dimensions          : 10x10 
#>   Voxel Spacing       : 1x1 
#>   Origin              : 0 0 
#>   Direction           : 1 0 0 1 
#>