imgBilinearRotate {biOps} | R Documentation |
This function rotates an image using bilinear interpolation and returns a new image.
imgBilinearRotate(imgdata, angle)
imgdata |
The image |
angle |
The clockwise deg angle to rotate |
return an imagedata object
imgRotate
imgNearestNeighborRotate
imgCubicRotate
imgSplineRotate
imgRotate90Clockwise
imgRotate90CounterClockwise
## Not run: x <- readJpeg(system.file("samples", "violet.jpg", package="biOps")) y <- imgBilinearRotate(x, 45) ## End(Not run)