python晃动图像怎么捕捉
发布网友
发布时间:2022-12-17 07:12
我来回答
共1个回答
热心网友
时间:2023-09-14 16:13
while(True):
ret, frame = cap.read()
rgb = cv2.cvtColor(frame, cv2.COLOR_BGR2BGRA)
cv2.imshow('frame', rgb)
if cv2.waitKey(1) & 0xFF == ord('q'):
out = cv2.imwrite('capture.jpg', frame)
break