This project elevates a Pi Zero simple webcamera with Motion Detection into a smart security camera by adding Cloud based image analysis via AWS Rekognition.
You can read more about this solution in the following blog posts:
- Smarten up Your Pi Zero Web Camera with Image Analysis and Amazon Web Services Part 1.
- Smarten up Your Pi Zero Web Camera with Image Analysis and Amazon Web Services Part 2.
You can also check out this presentation from Riga Dev Days where I describe the solution. The slides from this talk are also available.
Both Java and Node.js versions of the AWS Lambda Functions are provided. Due to naming differences I have also provided seperate Step Function definitions for both the Java and Node.js versions.
Heres a blogpost describing the differences between the two versions.
- s3-upload: Handles upload of image files from Pi Zero to Amazon s3.
- motion-config: Configuration files for Motion (running on a Pi Zero).
- aws-lambda-functions: Choose between Node.js or Java source code for all AWS lambda functions.
- aws-step-functions: JSON definitions for orchestration of AWS Lambda Functions.
If you think you've found a typo, or need help getting things to work, get in contact and I'll try to help!
Each subdirectory in this repository has simple instructions. Note that there are naming dependancies in this project, so make sure that any naming changes are applied across the repository.
All the code is provided as is, and it is left to the user to work out the fine details for themselves. The AWS documentation is very useful here. Remember that GIYF :)
The following prerequisites are required for working with this repository.
- AWS Credentials.
- You'll also need to be using a AWS Region that supports Rekognition, Step Functions, Lambda, s3 and SES (for example 'eu-west-1').
- You'll need a s3 bucket where your images can be uploaded for processing.
- The bucket will need two root directories : "/upload" and "/archive".
- Directly under the "/archive" directory, create the "/alerts" and "/falsepositives" subdirectories.
- In the "Permissions->Bucket Policy" tab for your S3 Bucket, set up the following Bucket Policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": {
"AWS": "*"
},
"Action": [
"s3:Get*",
"s3:List*"
],
"Resource": [
"arn:aws:s3:::your-bucket-name",
"arn:aws:s3:::your-bucket-name/*"
]
}
]
}
To make your S3 even more secure you can swop "*" with the full ARN for the IAM role associated with your nodemailer-send-notification or ses-send-notification Lambda Function.
- Set up your PiZero webcamera with Motion.
- Create an AWS account.
- Create an S3 Bucket.
- Implement s3-upload from PiZero to S3 Bucket.
- Implement all your aws-lambda-functions and test them individually.
- Implement your aws-step-function. Test it.
- Set up the S3 Trigger (Java or Node.js) that triggers the Step Function.