Giter VIP home page Giter VIP logo

smart-security-camera's Introduction

smart-security-camera

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:

You can also check out this presentation from JavaZone 2017 where I describe the solution. The slides from this talk are also available.

Java or Node.js?

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 another blogpost that describes the differences between the two versions.

Contents

  1. s3-upload: Handles upload of image files from Pi Zero to Amazon s3.
  2. motion-config: Configuration files for Motion (running on a Pi Zero).
  3. aws-lambda-functions: Choose between Node.js or Java source code for all AWS lambda functions.
  4. aws-step-functions: JSON definitions for orchestration of AWS Lambda Functions.

How to use

Note that this repository is provided as a record of my Smart Camera Project, which was originally created in December 2016 and further developed through to early 2018. It is a record for those interested and is not actively supported.

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.

Each subdirectory in this repository has simple instructions. Note that there are naming dependencies in this project, so make sure that any naming changes are applied across the repository.

Prerequisites

The following prerequisites are required for working with this repository.

AWS Credentials
  1. AWS Credentials.
  2. You'll also need to be using a AWS Region that supports Rekognition, Step Functions, Lambda, s3 and SES (for example 'eu-west-1').
S3 Bucket
  1. You'll need a s3 bucket where your images can be uploaded for processing.
  2. The bucket will need two root directories : "/upload" and "/archive".
  3. Directly under the "/archive" directory, create the "/alerts" and "/falsepositives" subdirectories.
  4. 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.

Suggested Implementation Plan

  1. Set up your PiZero webcamera with Motion.
  2. Create an AWS account.
  3. Create an S3 Bucket.
  4. Implement s3-upload from PiZero to S3 Bucket.
  5. Implement all your aws-lambda-functions and test them individually.
  6. Implement your aws-step-function. Test it.
  7. Set up the S3 Trigger (Java or Node.js) that triggers the Step Function.

smart-security-camera's People

Contributors

cuongthamhl avatar markwest1972 avatar tealtail avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.