我曾尝试使用 Cognex GigE 使用 OpenCV 捕获图像。我的代码找不到相机。这是我使用的代码。
import numpy as np
import cv2
capture = cv2.VideoCapture(0)
while (True):
frame = capture.read()
cv2.imshow('camera',frame)
if cv2.waitKey(1) & 0xFF == odd('q'):
break
capture.release()
cv2.destroyAllWindows()
提前致谢!