as.rimg | R Documentation |
Converts an array of RGB values, a cimg
object, or a magick-image
object,
to an rimg
object.
as.rimg(object, name = "img")
## Default S3 method:
as.rimg(object, name = "img")
## S3 method for class 'cimg'
as.rimg(object, name = "img")
is.rimg(object)
object |
(required) a three-dimensional array containing RGB values. |
name |
the name(s) of the image(s). |
an object of class rimg
for use in further pavo
functions
a logical value indicating whether the object is of class rimg
Thomas E. White thomas.white026@gmail.com
Hugo Gruson hugo.gruson+R@normalesup.org
# Generate some fake image data
fake <- array(c(
as.matrix(rep(c(0.2, 0.4, 0.6), each = 250)),
as.matrix(rep(c(0.4, 0.7, 0.8), each = 250)),
as.matrix(rep(c(0.6, 0.1, 0.2), each = 250))
),
dim = c(750, 750, 3)
)
# Inspect it
head(fake)
# Determine if is an rimg object
is.rimg(fake)
# Convert to rimg object and check again
fake2 <- as.rimg(fake)
is.rimg(fake2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.