📜  cv2 warpaffin 旋转 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:23.540000             🧑  作者: Mango

代码示例1
import numpy as np
import cv2

def rotate_image(image, angle):
  image_center = tuple(np.array(image.shape[1::-1]) / 2)
  rot_mat = cv2.getRotationMatrix2D(image_center, angle, 1.0)
  result = cv2.warpAffine(image, rot_mat, image.shape[1::-1], flags=cv2.INTER_LINEAR)
  return result