image_combine: Combines images to a grid

View source: R/utils_imagem.R

image_combineR Documentation

Combines images to a grid

Description

Combines several images to a grid

Usage

image_combine(
  ...,
  labels = NULL,
  nrow = NULL,
  ncol = NULL,
  col = "black",
  verbose = TRUE
)

Arguments

...

a comma-separated name of image objects or a list containing image objects.

labels

A character vector with the same length of the number of objects in ... to indicate the plot labels.

nrow, ncol

The number of rows or columns in the plot grid. Defaults to NULL, i.e., a square grid is produced.

col

The color for the plot labels. Defaults to col = "black".

verbose

Shows the name of objects declared in ... or a numeric sequence if a list with no names is provided. Set to FALSE to supress the text.

Value

A grid with the images in ...

Author(s)

Tiago Olivoto tiagoolivoto@gmail.com

Examples

library(pliman)
img1 <- image_pliman("sev_leaf.jpg")
img2 <- image_pliman("sev_leaf_nb.jpg")
image_combine(img1, img2)

pliman documentation built on Oct. 15, 2023, 1:06 a.m.

Related to image_combine in pliman...