quantile_img | R Documentation |
Creates output image of the quantiles that each voxel is in, after applying the mask
quantile_img(img, mask = NULL, ...)
img |
Character vector, or object of class |
mask |
Mask to determine cumulative distribution function (cdf) from |
... |
Additional arguments to pass to |
Object of class nifti
set.seed(5)
dims = rep(10, 3)
arr = array(rnorm(prod(dims)), dim = dims)
nim = oro.nifti::nifti(arr)
qimg = quantile_img(nim)
qarr = quantile_img(arr)
testthat::expect_equal(qarr, array(qimg, dim = dim(qarr)))
qimg = quantile_img(nim, mask = nim > 0)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.