amazon-rekognition

How to perform face recognition on a streaming video using amazon Rekognition?

别等时光非礼了梦想. 提交于 2019-12-02 14:21:45
问题 I am streaming video the amazon kinesis from raspberry pi (This is done). Now i want to perform face detection/recognition on that video using amazon Rekognition how to do it explain in detail with links. Thanks 回答1: From Working with Streaming Videos - Amazon Rekognition: You can use Amazon Rekognition Video to detect and recognize faces in streaming video. A typical use case is when you want to detect a known face in a video stream. Amazon Rekognition Video uses Amazon Kinesis Video Streams

How to perform face recognition on a streaming video using amazon Rekognition?

霸气de小男生 提交于 2019-12-02 07:56:21
I am streaming video the amazon kinesis from raspberry pi (This is done). Now i want to perform face detection/recognition on that video using amazon Rekognition how to do it explain in detail with links. Thanks From Working with Streaming Videos - Amazon Rekognition : You can use Amazon Rekognition Video to detect and recognize faces in streaming video. A typical use case is when you want to detect a known face in a video stream. Amazon Rekognition Video uses Amazon Kinesis Video Streams to receive and process a video stream. The analysis results are output from Amazon Rekognition Video to a

InvalidS3ObjectException when calling the IndexFaces operation

南笙酒味 提交于 2019-12-01 13:48:11
I am attempting the following tutorial https://aws.amazon.com/blogs/machine-learning/easily-perform-facial-analysis-on-live-feeds-by-creating-a-serverless-video-analytics-environment-with-amazon-rekognition-video-and-amazon-kinesis-video-streams/ So I replaced some part with my own bucket and key(file) name: aws rekognition index-faces --image "{\"S3Object\":{\"Bucket\":\"testbucket\",\"Name\":\"testfile.png\"}}" --collection-id=rekVideoBlog --detection-attributes=ALL --external-image-id=Andy --region us-west-2 (assume testbucket is my bucket name and testfile is the file I uploaded and made

InvalidS3ObjectException when calling the IndexFaces operation

痴心易碎 提交于 2019-12-01 13:09:30
问题 I am attempting the following tutorial https://aws.amazon.com/blogs/machine-learning/easily-perform-facial-analysis-on-live-feeds-by-creating-a-serverless-video-analytics-environment-with-amazon-rekognition-video-and-amazon-kinesis-video-streams/ So I replaced some part with my own bucket and key(file) name: aws rekognition index-faces --image "{\"S3Object\":{\"Bucket\":\"testbucket\",\"Name\":\"testfile.png\"}}" --collection-id=rekVideoBlog --detection-attributes=ALL --external-image-id=Andy

AWS lambda Unable to import module 'lambda_function': No module named PIL

隐身守侯 提交于 2019-11-28 06:34:00
问题 I am using a lambda function of SearchFacesbyimage And I am using this doc https://aws.amazon.com/blogs/machine-learning/build-your-own-face-recognition-service-using-amazon-rekognition/ where for comparison I am using this from PIL import Image And I am getting this error Unable to import module 'lambda_function': No module named PIL 回答1: You are getting this error as PIL for Python 2.x or PILLOW for 3.x are not standard libraries available in python lambda environment. To use such a library