imager (version 0.41.2)

imrep: 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

Examples

Run this code
# NOT RUN {
#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
# }

Run the code above in your browser using DataCamp Workspace