Send multiple frame to AWS rekognition
问题 I'm trying to send pictures to the aws rekognition from my webcam to detect the activity of the person sitting in front of it using python. To do so I take a picture every 5 seconds and I send it to the aws. But when I do so it seems that he's always sending back information about the first frame that I sent cap = cv2.VideoCapture(0) while 1: ret, img = cap.read() client=boto3.client('rekognition') print("hello") ret, fileImg=cv2.imencode('.png',img) response = client.detect_labels(Image={