rotatecv
Rotates the image, handle, by a given angle.
Syntax
R = rotatecv(handle, angle)
Inputs
- handle
- Handle of an image.
- angle
- Finite scalar specifying the angle by which the image needs to rotate by.
Outputs
- R
- Handle of the rotated image.
Example
handle = imreadcv('azaleas.jpg');
R = rotatecv(handle, 90);