Learn R Programming

imager (version 0.14)

imappend: Combine a list of images into a single image

Description

All images will be concatenated along the x,y,z, or c axis.

Usage

imappend(imlist, axis)

Arguments

imlist
a list of images (all elements must be of class cimg)
axis
the axis along which to concatenate (for example 'c')

See Also

imsplit (the reverse operation)

Examples

Run this code
imappend(list(boats,boats),"x") %>% plot
imappend(list(boats,boats),"y") %>% plot
plyr::rlply(3,imnoise(100,100)) %>% imappend("c") %>% plot
boats.gs <- grayscale(boats)
plyr::llply(seq(1,5,l=3),function(v) isoblur(boats.gs,v)) %>% imappend("c") %>% plot

Run the code above in your browser using DataLab