Dave
Dave

Reputation: 71

Using Lambda to call Amazon Rekognition on uploaded images

Does anyone know if it is possible to use Lambda to call Rekognition functions when an image is uploaded to an S3 Bucket?

I am looking at integrating a Raspberry Pi device with a Pi Cam to take photos and do some face recognition.

Upvotes: 1

Views: 2178

Answers (2)

MattD
MattD

Reputation: 150

Check out these instructions for a complete walk through on how to do exactly that: https://github.com/markwest1972/smart-security-camera

Upvotes: 0

user3567195
user3567195

Reputation: 447

You need to configure an Event on Amazon S3 to call a lambda function that can be either in C#, Java, Python or NodeJS.

For details, see: Tutorial: Creating an Amazon Rekognition Lambda Application

Upvotes: 2

Related Questions