【问题标题】:Error while writing video in OpenCV3 with Python使用 Python 在 OpenCV3 中编写视频时出错
【发布时间】:2016-12-31 21:43:39
【问题描述】:

我正在运行一个简单的程序来读取视频文件(.mp4 格式)并在反转每一帧后将其写回。我收到错误和错误警告。

BUG: The current event queue and the main event queue are not the same. Events will not be handled correctly. This is probably because _TSGetMainThread was called for the first time off the main thread.

Error in CoreDragRemoveTrackingHandler: -1856

我正在使用 El Captain OSX,我已经安装了 python 虚拟环境以使用 Python 3.5 和 OpenCV 3.2.0-rc。有人可以帮我解决这个问题吗?

谢谢

import numpy as np
import cv2
cap = cv2.VideoCapture('Root.mp4')
# Define the codec and create VideoWriter object
#fourcc = cv2.VideoWriter_fourcc(*'AVRN')
#out = cv2.VideoWriter('Root1.mp4',fourcc, 20.0, (640,360))
fourcc = cv2.VideoWriter_fourcc(*'MJPG')
out = cv2.VideoWriter('Root1.avi',fourcc, 20.0, (640,360))
while(cap.isOpened()):
    ret, frame = cap.read()
    if ret==True:
        frame = cv2.flip(frame,0)

        # write the flipped frame
        out.write(frame)

        cv2.imshow('frame',frame)
        if cv2.waitKey(1) & 0xFF == ord('q'):
            break
    else:
        break

# Release everything if job is finished
cap.release()
out.release()
cv2.destroyAllWindows()

【问题讨论】:

  • 总是放文本而不是屏幕截图 - 现在没有人可以复制粘贴您的代码来测试它并进行修改。
  • 好的。谢谢。我会改的
  • 也许可以在OpenCV issues询问

标签: python python-3.x opencv computer-vision opencv3.0


【解决方案1】:

似乎可以通过使用 --with-ffmpeg 标志重新安装 opencv3 来修复。

https://github.com/opencv/opencv/issues/7474

【讨论】:

    【解决方案2】:

    我可以告诉你一件事,你上面提到的脚本没有问题:p,它在我的系统上运行良好。在新的虚拟环境中重新安装opencv和python。

    【讨论】:

      【解决方案3】:

      试试这个:

      cap = cv2.VideoCapture(0)
      fps = 15
      capSize = (1280, 720)
      #print cap.get(3)
      #print cap.get(4)
      fourcc = cv2.VideoWriter_fourcc('m', 'p', '4', 'v')
      out = cv2.VideoWriter('output.mov',fourcc, fps, capSize, True)
      

      它对我有用,所以我希望它对你有帮助!

      【讨论】:

        猜你喜欢
        • 1970-01-01
        • 1970-01-01
        • 1970-01-01
        • 2015-08-11
        • 2011-07-22
        • 1970-01-01
        • 1970-01-01
        • 2011-11-19
        • 2018-01-31
        相关资源
        最近更新 更多