img_colour_df | R Documentation |
Takes in an image and a color scheme, converts that image
into a data.frame
with the data and a color mapping.
img_colour_df(img, zlim = NULL, breaks = NULL, col = gray(0:64/64))
img_color_df(...)
img |
an object to be coerced to |
zlim |
Limits for the domain of the intensities |
breaks |
Breaks for the intensities to map to colors |
col |
Colors to map intensities |
... |
not used |
A data.frame
with the first columns being the x,y,z (maybe t)
coordinates (named dim
and the dimension number), a value
column that contains the intensity information, and a colour
column
representing the color that voxel maps to
img_color_df
is a duplicate of img_colour_df
img = nifti(array(rnorm(10^3), dim = rep(10, 3)))
df = img_colour_df(img)
df = img_color_df(img)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.