Learn R Programming

neurobase (version 1.32.4)

emptyImageDimensionsMask: Make Mask from Empty Image Dimensions

Description

Make a mask of an image that has all irrelevant values

Usage

emptyImageDimensionsMask(img, ..., reorient = FALSE)

empty_dim_mask(img, ..., reorient = FALSE)

Value

Object of class nifti, with binary values

Arguments

img

nifti object

...

Arguments to be passed to getEmptyImageDimensions.

reorient

Should image be reoriented if a filename?

See Also

getEmptyImageDimensions

Examples

Run this code
set.seed(5)
dims = rep(10, 3)
arr = array(rnorm(prod(dims)), dim = dims)
arr[,,10] = 0
nim = oro.nifti::nifti(arr)
out = emptyImageDimensionsMask(nim)
out_arr = emptyImageDimensionsMask(arr)
testthat::expect_equal(out_arr, array(out, dim = dim(out)))
out_arr = empty_dim_mask(arr)

Run the code above in your browser using DataLab