Description Setting and getting the channel names Setting and getting the image names Author(s) Examples
Methods to get and set the names of individual channels or the names of individual images.
In the following code, x
is a CytoImageList
object containing one or multiple channels. The channel
names can be replaced by value
, which contains a character vector of
the same length as the number of channels in the images.
channelNames(x)
Returns the names of all channels stored in
x
channelNames(x) <- value
Replaces the channel names of
x
with values
. For this, value
needs to have the same
length as the number of channels in x
Here, x
is a CytoImageList object. The element
names can be replaced by value
, which contains a character vector of
the same length as the number of images. In case of the CytoImageList object,
elements are always images.
names(x)
Returns the names of all images stored in x
names(x) <- value
Replaces the image names of
x
with value
. For this, value
needs to have the same
length as x
Nils Eling (nils.eling@dqbm.uzh.ch)
1 2 3 4 5 6 7 8 9 | data("pancreasImages")
# Get channel and image names
channelNames(pancreasImages)
names(pancreasImages)
# Set channel and image names
channelNames(pancreasImages) <- paste0("marker", 1:5)
names(pancreasImages) <- paste0("image", 1:3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.