flip an image row-wise (horizontally) or column-wise (vertically)
flipImage(image, mode = "horizontal")
a matrix, data frame or 3-dimensional array where the third dimension is equal to 3
one of 'horizontal', 'vertical'
a matrix or 3-dimensional array where the third dimension is equal to 3
This function flips an image row-wise or column-wise
path = system.file("tmp_images", "1.png", package = "OpenImageR")
im = readImage(path)
flp = flipImage(im, mode = 'vertical')