VideoCapture显示视频帧(前置摄像头)旋转45度

时间:2017-11-23 07:01:26

标签: python video-capture opencv3.0

我正用我的正面手机摄像头录制视频。我尝试在python上使用VideoCapture()opencv来阅读它。

video = cv2.VideoCapture("out.mp4")
cv2.namedWindow("CurrentFrame", cv2.WINDOW_AUTOSIZE)
while True:
     ret,currentFrame = video.read()
     cv2.imshow("CurrentFrame", currentFrame)

框架显示为45度旋转 以前有没有人遇到这个问题?

1 个答案:

答案 0 :(得分:0)

使用函数cv2.flip(frame,axis_parameter)来旋转框架。

 cv2.imshow("CurrentFrame", cv2.flip( currentFrame , -1 ))

关于“-1”作为参数我不确定,你应该选择正确的参数。