imager (version 0.41.2)

permute_axes: Permute image axes

Description

By default images are stored in xyzc order. Use permute_axes to change that order.

Usage

permute_axes(im, perm)

Arguments

im

an image

perm

a character string, e.g., "zxyc" to have the z-axis come first

Examples

Run this code
# NOT RUN {
im <- array(0,c(10,30,40,3)) %>% as.cimg
permute_axes(im,"zxyc")
# }

Run the code above in your browser using DataCamp Workspace