Convert a raster object to a cimg object
R's native object for representing images is a "raster". This function converts raster objects to cimg objects.
## S3 method for class 'raster' as.cimg(obj, ...)
obj |
a raster object |
... |
ignored |
a cimg object
Simon Barthelme
rst <- as.raster(matrix((1:4)/4,2,2)) as.cimg(rst) %>% plot(int=FALSE) all.equal(rst,as.raster(as.cimg(rst)))
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.