imrep {imager} | R Documentation |
Replicate images
Description
Kinda like rep, for images. Copy image n times and (optionally), append.
Usage
imrep(x, n = 1, axis = NULL)
Arguments
x |
an image |
n |
number of replications |
axis |
axis to append along (one of NULL, "x","y","z","c"). Default: NULL |
Value
either an image or an image list
Author(s)
Simon Barthelme
Examples
#Result is a list
imrep(boats,3) %>% plot
#Result is an image
imrep(boats,3,"x") %>% plot
#Make an animation by repeating each frame 10x
#map_il(1:5,~ isoblur(boats,.) %>% imrep(10,"z")) %>%
# imappend("z") %>% play
[Package imager version 1.0.2 Index]