
Last chance! 50% off unlimited learning
Sale ends in
All images will be concatenated along the x,y,z, or c axis.
imappend(imlist, axis)
a list of images (all elements must be of class cimg)
the axis along which to concatenate (for example 'c')
imsplit (the reverse operation)
# NOT RUN {
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
#imappend also works on pixsets
imsplit(boats > .5,"c") %>% imappend("x") %>% plot
# }
Run the code above in your browser using DataLab