cv2.imshow() 函数在我调用它时没有显示任何内容

问题描述 投票:0回答:3

我正在关注 openCV python 教程之一,以显示来自相机的实时视频源。当我运行该程序时,网络摄像头的绿灯亮起(就像我在 Mac 上一样)并且没有任何错误。我的码头上还出现了一艘蟒蛇火箭飞船,但它没有显示任何窗口或任何东西。当我尝试显示一张图像时也会发生这种情况。

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_BGR2GRAY)

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

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

这是我正在使用的代码。任何帮助将不胜感激。谢谢

python opencv
3个回答
2
投票

尝试使用

cv.named Window command
打开新窗口 :

cv2.namedWindow('frame', cv2.WINDOW_AUTOSIZE)
cv2.imshow('frame',gray)
cv2.waitKey(1)
cv2.destroyAllWindows()

我希望这对你有用


0
投票

我在here找到了解决方案。尝试在顶部添加以下行。

import cv2.
cv2.startWindowThread()

在 for 循环内运行这个。

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

0
投票

我通过 Visual Studio Code 在 Mac 上使用 conda 解释器。改变解释器就可以了。 您可以尝试的另一件事是更改 python 解释器的版本,因为我从使用 3.10.xx 降级到 3.9.xx 并且它对我有用。

© www.soinside.com 2019 - 2024. All rights reserved.