Skip to main content
Created By: Nekhil R. Public Project Link: https://studio.edgeimpulse.com/public/109997/latest

Project Demo

Arduino Nicla Vision passenger counter prototype mounted inside an elevator

Story

As elevators become more and more indispensable in people’s lives, safety has become more of a concern. Overloading is an important contributing factor to elevator accidents. Most existing elevators use weight sensors to determine the total load in an elevator, and those systems can sometimes fail. Additionally, their maintenance is expensive. To avoid such accidents, we are going to design a proof-of-concept device which can count passengers in real-time at high speed, and can give an alert if the number of people in an elevator is above a threshold. This device can be attached anywhere in the elevator. And compared with existing technology, its implementation cost is low, and maintenance is easy.

How does it work?

In this prototype, we only consider two floors, the ground floor and the 2nd floor. After all the passengers enter the elevator, someone needs to press the close button. Then we count the number of passengers, and if it is above the threshold the device will sound an alarm. Thus, some people can leave the elevator, before it will begin ascending. If the number of people detected is not above the threshold, the elevator will move on. The threshold passenger limit can be set by the user in the code, and should be set based on the size and capacity of the elevator. In addition to the overload alert, we also provide elevator statistics. This means that the device can upload the count in elevators with the specific time stamp to a database or spreadsheet for tracking. The count will be always updated after pressing the close button in the elevator. One of the interesting aspects of this data is that it can be easily visualised by any graphs or charts. So, it can be useful for any person who analyses elevator usage and pedestrian movement. Here is an example of the passenger count data coming from the device, when it is viewed in Excel.
Excel spreadsheet containing timestamped elevator passenger count data
Below are the various graphs generated from the above data.

Clustered Column

Clustered column chart generated from elevator passenger count data

Line chart

Line chart visualizing elevator passenger counts over time

Pie chart

Pie chart summarizing elevator passenger count distribution
Consider the case of elevators in a shopping mall. By using this type of information, the mall owner or operator can easily add up elevators, and if the usage of an elevator is too high can make changes, such as adding capacity or redirecting pedestrians as needed.

Nicla Vision

In this project, we are using the Nicla Vision, a tiny AI board from Arduino. It features a 2MP color camera, and has the intelligence to process and extract useful information from anything it sees.
Arduino Nicla Vision board used as the elevator passenger-counting camera

Data collection and Labeling

For the data collection, we mounted the board on a tripod and connected it to a laptop using a lengthy USB cable. The below image shows the data acquisition setup.
Data collection setup with Nicla Vision mounted on a tripod
The whole setup was on one end of the room and we actually stood on the opposite end. This allowed a good perspective for training data, teaching the Nicla to detect and count passengers. You can follow this tutorial to connect Nicla vision to Edge Impulse. We captured 73 images and split them between Testing and Training. Our images contain only one person or two people at a time, but you could easily do more. Then we labeled each image one by one, and here we have only one class named “people”.

Impulse Design

This is the machine learning pipeline for this project:
Impulse design page for the elevator passenger object detection model
To keep the model size small, we choose an image width and height of 96x96 pixels, and the resize mode to “Fit the shortest axis”. After saving the impulse we moved onto the Image tab and chose “Grayscale” as the colour depth, and saved the parameters and generated features for our images. The image below shows the generated features:
Feature explorer generated from elevator passenger training images

Model Training

Here is our Neural Network training settings and architecture for generating the model:
Neural network training settings and FOMO architecture for passenger counting
We only changed the training cycle from 60 to 70. Further increasing a training cycle or learning rate can overfit the data, so we stuck to this. For the Neural Network architecture, we used FOMO (MobileNet V2 0.35). The results are great, achieving a bit over 95% accuracy for the model (using quantized int version).
Training output showing passenger counting model accuracy and loss curves

Model Testing

It’s time to test the model. First, we used the test data which we separated earlier and got around 84% accuracy. That is not great, but seems to be fine in this use case.
Model testing results for the elevator passenger counting classifier
Now let’s move on to the Live classification. Here we are testing 3 sample images captured from the Nicla vision and let’s see how our model performs.

Test 1

Live classification test image with one passenger detected in the room

Test 2

Live classification test image with passenger detections from another scene

Test 3

Live classification test image with elevator passenger detection results
In all our testing samples, the model performed very well, so we can go ahead and deploy it to the device.

Deployment

Now we have our ML model, and it has been tested, so we need to deploy it to our Nicla Vision. We just created an Arduino library by pressing the Build button, and a Zip file will be downloaded.
Deployment page building an Arduino library for the passenger counting model
Then we add that library to the Arduino IDE. Next, we modified the example sketch that is provided. You can find code and assets in this GitHub Repository.

Additional Hardware and Casing

In addition to the Nicla Vision, we used a buzzer and a LED to create an alarm.
Buzzer and LED components used for the elevator overload alarm
But the output current of the Nicla (4.7 mA) is not enough to properly power up an LED and buzzer. So we used a 2N222A transistor to drive these devices. This required the use of an external power supply of 5V, in addition to the USB power supply for powering the Nicla Vision itself. A push button is also used, to check whether the door is closed or not.
Transistor driver circuit assembled for the elevator alarm hardware
Finally, we made a nice, tiny case for this device.
Small 3D-printed enclosure made for the passenger counter device
Then we inserted each component into it:
Passenger counter electronics inserted into the 3D-printed enclosure
Now, our device is ready to implement.

TeraTerm

Tera Term serial terminal connected to the Nicla Vision passenger counter
We used TeraTerm to stream data from the Nicla Vision. The streaming data can be logged anywhere in any format. Here we proceeded with CSV format, so the file can be easily opened with Microsoft Excel.
Tera Term logging dialog configured to save passenger count data
Make sure to check the box for Timestamp before logging the data. The below image shows sample data streamed from our device, which is then opened in Excel.
Raw passenger count serial log opened as CSV data in Excel
We can easily generate graphical reports from this data by selecting that text. The below figure represents the line chart for the above data.
Excel line chart generated from logged elevator passenger counts
There is a wide variety of options available and they are shown below.
Excel chart options available for visualizing passenger count data

Conclusion

This device can be easily integrated and installed in an elevator, making it so that the elevator will only start when the passenger count is in the permissible range. To reduce the cost of the unit, we can also try using an ESP32-EYE or similar microcontroller unit, instead of the Nicla Vision, though the quality and capability will need to be tested similar to how the Nicla was evaluated.