我正在尝试使用摄像头实时捕获事件。 (可接受的最大延迟为50-100毫秒)。有人可以建议在python上最快的方法。
这是我写的,但是大约需要350毫秒
import cv2
import time
cap = cv2.VideoCapture(0)
# Check if the webcam is opened correctly
if not cap.isOpened():
raise IOError("Cannot open webcam")
start = time.time()
ret, frame = cap.read()
end = time.time()
frame = cv2.resize(frame, None, fx=0.5, fy=0.5, interpolation=cv2.INTER_AREA)
print(end - start)
cv2.imshow('Input', frame)
c = cv2.waitKey(1)
while c!=27:
continue
cap.release()
cv2.destroyAllWindows()