This project uses Amazon Rekognition and can be run in one of three regions:
- US East (N. Virginia)
- US West (Oregon)
- EU (Ireland)
3 Lambda functions with Python 3.6 runtime are deployed as part of this project. The scripts are located in lambdas directory.
A cloudformation template: ddr.template
has been provided to automate the server side infrastructure.
The lambda scripts are uploaded as zip files and can be sourced only from S3 buckets in the same region.
- Pick a region to host the project: us-east-1, us-west-2 or eu-west-1.
- Create or re-use a bucket in region:
aws s3 mb s3://<bucket-name> --region <region>
- Deploy lambda functions using
deploy_lambda.sh
./deploy_lambda.sh <bucket-name> <region>
aws ec2 create-key-pair --key-name ddr-pdx --query 'KeyMaterial' --output text > ~/.ssh/ddr-pdx.pem; chmod 600 ~/.ssh/ddr-pdx.pem
Use the console or launch using cli. See ddr_test_params.json for an example. You will need to provide:
- Key-pair
- Lambda Assets bucket name
- ID of your default or chosen VPC
- Two subnets in your VPC
- IP range for remote access (0.0.0.0/0 will be public access)
Cloudformation cli command:
aws cloudformation --region ${REGION} create-stack --stack-name ddr-stack \
--template-body file://ddr.template \
--parameters file://ddr_test_params.json \
--capabilities "CAPABILITY_IAM"
- Use the console or CLI to get the public ip of the instance launched. Substitute STACK_ID and REGION below.
aws cloudformation describe-stacks --stack ${STACK_ID} --region ${REGION} \
| jq '.[]|.[]|.Outputs|.[]|select(.OutputKey == "DdrEC2PublicIp")|.OutputValue'
-
SSH to the EC2 server with the IP identified above
ssh -i ddr-pdx.pem [email protected]
-
Execute setup script and run server process
- setup_bucket_notifications.sh - sets up notification events for s3 bucket and prepares ddr_config.props
- run_server.sh runs three processes:
- sqs_poller - Processes incoming files on S3 notified to SQS
- ddr_runner - computes scores and runs rekognition commands
- op_server - Openpose server running zeromq endpoint. Listens on incoming requests and processes images
cd ~/ddr
git pull
cd scripts
./setup_bucket_notifications.sh
./run_server.sh
- Deploy webapp to created s3 webapp bucket
cd ~/ddr
./deploy_webapp.sh
- Follow instructions in ddr_raspi/README.md
- It will create a S3 bucket
- See instructions in section: Run ddr_camera.py
Ensure the following:
-
ddr_camera
is running on raspberry pi -
run_server.sh
has been executed on openpose EC2 instanceps -ef | grep python
andps -ef | grep op_server
should list the processes e.g.ubuntu@ip-172-31-9-99:~/ddr$ ps -ef | grep python ubuntu 2861 1 0 02:34 pts/1 00:00:35 python -m ddr_server.ddr_runner ubuntu 2862 1 16 02:34 pts/1 00:23:10 python -m ddr_server.sqs_poller ubuntu 3383 3282 0 04:56 pts/0 00:00:00 grep --color=auto python ubuntu@ip-172-31-9-99:~/ddr$ ps -ef | grep op_server ubuntu 2863 1 0 02:34 pts/1 00:00:06 ./build/examples/tutorial_pose/op_server.bin ubuntu 3385 3282 0 04:56 pts/0 00:00:00 grep --color=auto op_server
-
Verify scores on the S3 website. Substitute bucket name and region.
-
Inspecting the API Gateway output. Substitute endpoint and region in the url below