Cv2.GetRotationMatrix2D 实例
时间: 2023-05-27 17:01:45 浏览: 116
cv2
下面是使用cv2.GetRotationMatrix2D旋转图像的示例:
``` python
import cv2
# 加载图像
image = cv2.imread("image.jpg")
# 获取图像的中心点和旋转角度
(height, width) = image.shape[:2]
center = (width / 2, height / 2)
angle = 45
# 旋转图像
matrix = cv2.getRotationMatrix2D(center, angle, 1.0)
rotated_image = cv2.warpAffine(image, matrix, (width, height))
# 显示原始图像和旋转后的图像
cv2.imshow("Original Image", image)
cv2.imshow("Rotated Image", rotated_image)
cv2.waitKey(0)
```
在此示例中,我们首先加载一张图像。然后,使用cv2.GetRotationMatrix2D函数获取图像的中心点和旋转角度,其中旋转角度设置为45度。接下来,我们将使用cv2.warpAffine函数来旋转图像。最后,我们将显示原始图像和旋转后的图像。
这是使用cv2.GetRotationMatrix2D旋转图像时的一个基本示例。
阅读全文