Rotating an image with OpenCV and Python
john.freml.in
Rotating an image with OpenCV and Python
1–2 of 2 posts
Re: Rotating an image with OpenCV and Python
#2> from skimage.transform import rotate
> rotate(image, angle, resize=True)
Also, scikit-image provides a nice interface for geometric transformations: `SimilarityTransform`, `AffineTransform`, `ProjectiveTransform`, `PolynomialTransform`.