gpt4 book ai didi

python - OpenCV Python 脚本 Mac "aborts"

转载 作者:太空宇宙 更新时间:2023-11-03 13:27:31 25 4
gpt4 key购买 nike

所以我只是想运行基本的 OpenCV 程序

    import numpy as np
import cv2

cap = cv2.VideoCapture(0)

while(True):
# Capture frame-by-frame
ret, frame = cap.read()

# Our operations on the frame come here
gray = cv2.cvtColor(frame, cv2.COLOR_BGR2BGRA)

# Display the resulting frame
cv2.imshow('frame',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break

# When everything done, release the capture
cap.release()
cv2.destroyAllWindows()

但出于某种原因,当我尝试运行它时(使用 python 2 或 3)我得到了这个奇怪的中止语句

    [1]    74309 abort      python3 index.py

(我猜 5 位数字是 PID)但是,如果我在 VideoCapture 函数中传入一个已经存在的视频的路径,它确实有效。我是所有这一切的初学者,所以我不太确定问题出在哪里

谢谢:)

最佳答案

我找到了解决方案!我尝试使用 mac 附带的默认终端运行脚本并且它有效:)所以我使用的第三方终端 (iTerm) 似乎有一些奇怪的问题

关于python - OpenCV Python 脚本 Mac "aborts",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52634009/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com