Answers for "opencv rotate image"

3

rotate picture in opencv2 python

# 90degree
image = cv2.rotate(src, cv2.cv2.ROTATE_90_CLOCKWISE)
# 180 degrees
image = cv2.rotate(src, cv2.ROTATE_180)
# 270 degrees
image = cv2.rotate(src, cv2.ROTATE_90_COUNTERCLOCKWISE)
Posted by: Guest on June-18-2021
0

rotate image by specific angle opencv

from scipy import ndimage

#rotation angle in degree
rotated = ndimage.rotate(image_to_rotate, 45)
Posted by: Guest on June-30-2020

Python Answers by Framework

Browse Popular Code Answers by Language