https://github.com/dan-mba/aws-sam-rekognition
AWS SAM project that will deploy a simple API to identify faces using Rekognition
https://github.com/dan-mba/aws-sam-rekognition
aws aws-apigateway aws-lambda aws-rekognition aws-sam boto3 opencv-python python
Last synced: 8 months ago
JSON representation
AWS SAM project that will deploy a simple API to identify faces using Rekognition
- Host: GitHub
- URL: https://github.com/dan-mba/aws-sam-rekognition
- Owner: dan-mba
- Created: 2020-10-29T15:03:01.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2025-04-10T09:43:25.000Z (8 months ago)
- Last Synced: 2025-04-12T10:09:09.623Z (8 months ago)
- Topics: aws, aws-apigateway, aws-lambda, aws-rekognition, aws-sam, boto3, opencv-python, python
- Language: Python
- Homepage:
- Size: 588 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## AWS SAM Faces API
This project is an API to detect forward facing faces in an image.
It uses OpenCV and Rekognition for detection.

### Deployment
This application is designed to be deployed using the SAM CLI.
For more information on how to use `sam deploy` see the [aws-sam-cli repositry](https://github.com/aws/aws-sam-cli).
### API
POST /faces
send the binary image in the body and it will be returned with rectangles arround the faces.
There is an example of how to post to the api using a react app [here](https://github.com/dan-mba/react-postpic).
## Resources
See the [AWS SAM developer guide](https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/what-is-sam.html) for an introduction to SAM specification, the SAM CLI, and serverless application concepts.