Difference between revisions of "Getting Started & Project: Object Detection"

From
Jump to: navigation, search
(First Project)
(I just got my DeepLens!)
Line 16: Line 16:
 
* [http://blog.kloud.com.au/2018/02/27/aws-deeplens-part-1-getting-the-deeplens-online/ Part 1 - Getting Online | SAMZAKKOUR @ Kloud]
 
* [http://blog.kloud.com.au/2018/02/27/aws-deeplens-part-1-getting-the-deeplens-online/ Part 1 - Getting Online | SAMZAKKOUR @ Kloud]
 
* [http://www.lynda.com/Amazon-Web-Services-tutorials/Setting-up-your-AWS-DeepLens/706932/737910-4.html Lynda.com Setting up your AWS DeepLens]
 
* [http://www.lynda.com/Amazon-Web-Services-tutorials/Setting-up-your-AWS-DeepLens/706932/737910-4.html Lynda.com Setting up your AWS DeepLens]
 +
 +
Thoughts: Instructions are unclear on: [1] what computer to use when, [2] what network to link, [3] no signature is required on the streaming certificate which is to be loaded into each browser - file is named 'download'.
  
 
<youtube>j0DkaM4L6n4</youtube>
 
<youtube>j0DkaM4L6n4</youtube>

Revision as of 13:46, 25 June 2018

YouTube search...

I just got my DeepLens!

Thoughts: Instructions are unclear on: [1] what computer to use when, [2] what network to link, [3] no signature is required on the streaming certificate which is to be loaded into each browser - file is named 'download'.

First Project: Object Detection

This project shows you how a deep learning model can detect and recognize objects in a room. The project uses the Single Shot MultiBox Detector (SSD) framework (Reference: Object Detection; Faster R-CNN, YOLO, SSD) to detect objects with a pretrained ResNet-50 network. The network has been trained on the Pascal Visual Object Classes Challenge (VOC) dataset and is capable of recognizing 20 different kinds of objects. The model takes the video stream from your AWS DeepLens device as input and labels the objects that it identifies. The project uses a pretrained optimized model that is ready to be deployed to your AWS DeepLens device. After deploying it, you can watch your AWS DeepLens model recognize objects around you. The model is able to recognize the following objects: airplane, bicycle, bird, boat, bottle, bus, car, cat, chair, cow, dining table, dog, horse, motorbike, person, potted plant, sheep, sofa, train, and TV monitor.

Your web browser is the interface between you and your AWS DeepLens device. You perform all of the following activities on the AWS DeepLens console using your browser, open the AWS DeepLens console at http://console.aws.amazon.com/deeplens. For a walkthrough...Creating and Deploying an AWS DeepLens Sample Project | GitHub

Extending the Object Detection project: You will capture the events from your AWS DeepLens model and put them in a queue ready for further processing; then extend the models utilizing AWS Lambda functions.