as.cimg.raster: Convert a raster object to a cimg object

as.cimg.rasterR 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)))


imager documentation built on May 29, 2024, 1:38 a.m.