Display an image that has been read in by read_tif()
as it would look in
'ImageJ'. This function is really just imager
's plot.cimg()
on the
inside, with some handling.
Arguments
- img
An ijtiff_img object.
- ...
Passed to
imager
's `plot.cimg().
Examples
img <- read_tif(system.file("img", "Rlogo.tif", package = "ijtiff"))
#> Reading Rlogo.tif: an 8-bit, 76x100 pixel image of unsigned
#> integer type. Reading 4 channels and 1 frame . . .
#> Done.
display(img)
display(img[, , 1, 1]) # first (red) channel, first frame
display(img[, , 2, ]) # second (green) channel, first frame
display(img[, , 3, ]) # third (blue) channel, first frame
display(img, basic = TRUE) # displays first (red) channel, first frame
#> Warning: "basic" is not a graphical parameter