as.cimg.raster {imager} | R Documentation |
Convert a raster object to a cimg object
Description
R's native object for representing images is a "raster". This function converts raster objects to cimg objects.
Usage
## S3 method for class 'raster'
as.cimg(obj, ...)
Arguments
obj |
a raster object |
... |
ignored |
Value
a cimg object
Author(s)
Simon Barthelme
Examples
rst <- as.raster(matrix((1:4)/4,2,2))
as.cimg(rst) %>% plot(int=FALSE)
all.equal(rst,as.raster(as.cimg(rst)))
[Package imager version 1.0.2 Index]