A Person Detection Security Robot That Sends You Photos

In this tutorial, you will create a desk security system with no hardware other than your laptop and the built-in webcam.

Maybe you keep a box of chocolates on your desk to snack on when you are hungry. Maybe someone is eating your chocolates when you are away. You’re not sure who, but you suspect Steve. This robot will help you catch the culprit.

When someone comes to your desk, the robot will use the vision service and the ML model service to detect a person, take their photo, and text you an alert with a photo of the person.

Text message reading “Alert There is someone at your desk beware” with a photo of a person (Steve) detected by the camera as he approaches the desk.

Hardware requirements

You need the following hardware for this tutorial:

  • Computer with a webcam
    • This tutorial uses a MacBook Pro but any computer running macOS or 64-bit Linux will work
  • Mobile phone (to receive text messages)

Software requirements

You will use the following software in this tutorial:

Configure your robot on the Viam app

Install viam-server and connect to your robot

Go to the Viam app and create a new machine.

Go to the Setup tab of your new machine’s page and follow the steps to install viam-server on your computer.

Configure the camera component

On your new machine’s page, go to the Config tab and create a camera component:

Click Create component in the lower-left corner of the screen.

Select type camera and model webcam.

Enter cam as the name, then click Create to add the camera.

Click the Video Path field to reveal a dropdown populated with camera paths that have been identified on your machine.

Select the path to the camera you want to use.

Click Save config in the lower-left corner of the screen.

Navigate to the Control tab where you can see your camera working.

Configure your services

This tutorial uses a pre-trained Machine Learning model from the Viam Registry called EfficientDet-COCO. The model can detect a variety of things, including Persons. You can see a full list of what the model can detect in labels.txt file.

If you want to train your own model instead, follow the instructions in train a model.

Click the Services subtab.

  1. Configure the ML model service

    Add an mlmodel service:

    Click Create service in the lower-left corner of the Services subtab. Select type mlmodel, then select model tflite_cpu.

    Enter people as the name, then click Create.

    In the new ML Model service panel, configure your service.

    mlmodel service panel with empty sections for Model Path, and Optional Settings such as Label Path and Number of threads.

    Select the Deploy model on robot for the Deployment field. Then select the viam-labs:EfficientDet-COCO model from the Models dropdown.

  2. Configure an mlmodel detector

    Add a vision service with the name myPeopleDetector, type vision and model mlmodel. Click Create service.

    In the new vision service panel, configure your service.

    Select people from the ML Model dropdown.

    vision service panel called myPeopleDetector with filled Attributes section, mlmodel_name is “people”.

Configure the detection camera

To be able to test that the vision service is working, add a transform camera which will add bounding boxes and labels around the objects the service detects.

Click on the Components subtab and click Create component in the lower-left corner. Create a transform camera with type camera and model transform. Name it detectionCam and click Create.

detectionCam component panel with type camera and model transform, Attributes section has source and pipeline but they are empty.

In the new transform camera panel, replace the attributes JSON object with the following object which specifies the camera source that the transform camera will use, and defines a pipeline that adds the defined myPeopleDetector:

{
  "source": "cam",
  "pipeline": [
    {
      "type": "detections",
      "attributes": {
        "detector_name": "myPeopleDetector",
        "confidence_threshold": 0.5
      }
    }
  ]
}

Click Save config in the lower-left corner of the screen.

detectionCam component panel with type camera and model transform, Attributes section filled with source and pipeline information.

Test the model

the control tab

At this point, you can test that the model is detecting people. Navigate to your machine’s Control tab.

Click on the detectionCam panel and toggle View detectionCam on. If the camera sees a person, you will see a red box around the detection along with the confidence score.

How to use yagmail

Install yagmail (Yet Another Gmail/SMTP client) by running the following command in a terminal on your computer:

pip3 install yagmail

Then we have to indicate whom to send a message to, the subject, and the contents of the text message (which can be a string, image, or audio). Example code below (though you don’t have to use it yet, this will get used in the next section):

yag.send('phone_number@gatewayaddress.com', 'subject', contents)

You will need access to your phone number through your carrier. For this tutorial, you are going to send the text to yourself. You will replace to@someone.com with your phone number and SMS gateway address. You can find yours here: Gateway Addresses for Mobile Phone Carrier Text Message. Some common ones:

  • AT&T: txt.att.net
  • T-Mobile:tmomail.net
  • Verizon Wireless: vtext.com

As an example, if you have T-Mobile your code will look like this:

yag.send('xxxxxxxxxx@tmomail.net', 'subject', contents)

This allows you to route the email to your phone as a text message.

Use the Viam Python SDK to control your security robot

Create the main script file

On your computer, navigate to the directory where you want to put the code for this project. Create a file there called chocolate_security.py. This will be the main script for the machine.

Make a copy of the lightupbot.py file in your project directory and save it as chocolate_security.py. You will use the same robot connection code and detector configuration code but edit some other parts of the file.

Delete the from kasa import Discover, SmartPlug line and replace it with the following to import the Yagmail Python library:

import yagmail

Connect the code to the robot

You need to tell the code how to access your specific robot (which in this case represents your computer and its webcam).

Navigate to the CONNECT tab on the Viam app. Make sure Python is selected in the Language selector. Get the robot address and API key from the code sample and set them as environment variables or add them at the top of chocolate_security.py.

Now you need to rewrite the if/else function. If a person is detected, your robot will print sending a message, take a photo, and save it to your computer as foundyou.png (or whatever name you want).

Then you will create a yagmail.SMTP instance to initialize the server connection.

Refer to the code below and the yagmail instructions to edit your chocolate_security.py file as necessary.

Click to show the full example code.

Save your code file.

Run the code

You are ready to test your robot!

From a command line on your computer, navigate to the project directory and run the code with this command:

python3 chocolate_security.py

If you are in front of your computer’s webcam, you should get a text!

Your terminal should look like this as your project runs if you are in front of the camera for a bit, and then move away from the screen:

python3 chocolate_security.py
This is a person!
sending a message
x_min: 7
y_min: 0
x_max: 543
y_max: 480
confidence: 0.94140625

This is a person!
sending a message
x_min: 51
y_min: 0
x_max: 588
y_max: 480
confidence: 0.9375

This is a person!
sending a message
There's nobody here, don't send a message
There's nobody here, don't send a message

Summary and next steps

In this tutorial, you learned how to build a security robot using the vision service, the ML model service, your computer, and your mobile phone, and we all learned not to trust Steve.

Have you heard about the chocolate box thief? He’s always got a few Twix up his Steve.

For more robotics projects, check out our other tutorials.

You can also ask questions in the Community Discord and we will be happy to help.