我试图运行2个Usb-Cameras的实时捕获(相同的参考) USB-Camera_0 - > USB端口0 USB-Camera_1 - > USB端口1
我使用此代码仅对一台摄像机进行实时捕捉。为了同时运行第二个摄像头(连接到第二个USB端口),我使用相同的代码创建另一个文件(更改索引0 - > 1)。我问是否可以在同一个代码文件中运行这两个实时捕获。
感谢
import numpy as np
import cv2
cap = cv2.VideoCapture(0)
while(True):
# Capture frame-by-frame
ret, frame = cap.read()
# 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()