我使用opencv示例代码来捕获视频,我不知道它为什么会逆转?

时间:2016-10-07 12:47:53

标签: opencv

这是我的代码。我正在尝试捕捉视频并将其写入我的记忆中。但这是错误的。

 import numpy as np
 import cv2

 cap = cv2.VideoCapture(0)

 fourcc = cv2.VideoWriter_fourcc(*'DIVX')
 out = cv2.VideoWriter('ouput.avi',fourcc,20.0,(640,480))

 while(1):
   ret,frame=cap.read()
  if ret==True:
     frame = cv2.flip(frame,0)
     out.write(frame)
     cv2.imshow('frame',frame)
   if cv2.waitKey(1) & 0xFF ==ord('q'):
        break
  else:
     break

cap.release()
out.release()
cv2.destroyAllWindows()
窗口显示视频是反转的。我可以把它转回去吗? 谢谢!

1 个答案:

答案 0 :(得分:3)

不要使用flip命令。

frame = cv2.flip(frame, 0)

检查翻转docs