Real-time Face Detection on Raspberry Pi

A step-by-step guide to implement real-time face detection on a Raspberry Pi running 24 frames per second

Sabina Pokhrel
Analytics Vidhya
3 min readDec 8, 2019

--

Image showing detected faces

In this post, i will guide you through a step-by-step process of implementing a real-time face detection on a Raspberry Pi, running 24 frames per second on a single core.

I will use a Raspberry Pi 3B+, with Raspbian Buster as the operating system and a Pi camera.

For the face detection, I will use Xailient FaceSDK.

Step 1: Install Python 3.7.3

Raspbian Buster comes with Python 3.7.3 preinstalled, so there is no need to explicitly install Python 3.7.3. To confirm, use the following command to see what version of Python is installed in your Raspberry Pi.

Step 2: Install tflite for Python 3.7

To install tflite for Python 3.7, enter following pip3 install command in your terminal.

Step 3: Install OpenCV

Install OpenCV if it is not already installed. You can either use apt install or pip3 install OpenCV on your Raspberry Pi.

or

Step 4: Download Xailient FaceSDK and Unzip

Go to Xailient SDK page and register as a new user and login.

Go to SDK tab, where you will find instructions for downloading and installing Face SDK.

Xailient SDK page to download Python Face SDK.

For Raspberry Pi 3B+, download the ARM32 version of the SDK. You can either open the link from your Raspberry Pi’s browser to download it directly to it or you can use the following wget command:

Unzip the downloaded FaceSDK.

Step 5: Add Shared Library to Path

This is required as the library depends on some dynamically loaded shared Libraries.

You can add library path to bashrc script so that you dont need to export everytime you login.

Step 6: Download config file

From the Xailient SDK page, download the config file by either opening the link from your Raspberry Pi’s browser to or using the following wget command:

Copy the config.json file into the FaceSDK folder.

Step 7: Install Xailient FaceSDK

To install the Xailient FaceSDK, run the Install.sh file that is inside the SDK folder. Go to the FaceSDK folder from your terminal and run the following command:

For more details on the installation process, you can refer to the Readme file that comes along with the FaceSDK.

Step 8: Run sample Face Detection code

The FaceSDK comes with sample code that demonstrates how to use and
interact with the Xailient Face Detector Python library.

Go to samples folder and run the picam_streaming_demo.py script to run real-time face detection.

Running Xailient FaceSDK on a Raspberry Pi 3B+

You now have a real-time face detection running on a Raspberry Pi.

--

--

Sabina Pokhrel
Analytics Vidhya

AI Specialist | Machine Learning Engineer | Writer and former Editorial Associate at Towards Data Science