All Projects → NVIDIA-AI-IOT → deepstream-occupancy-analytics

NVIDIA-AI-IOT / deepstream-occupancy-analytics

Licence: MIT license
This is a sample application for counting people entering/leaving in a building using NVIDIA Deepstream SDK, Transfer Learning Toolkit (TLT), and pre-trained models. This application can be used to build real-time occupancy analytics applications for smart buildings, hospitals, retail, etc. The application is based on deepstream-test5 sample app…

Programming Languages

c
50402 projects - #5 most used programming language
Makefile
30231 projects
C++
36643 projects - #6 most used programming language
shell
77523 projects

People count application With Deepstream SDK and Transfer Learning Toolkit

Description

This is a sample application for counting people entering/leaving in a building using NVIDIA Deepstream SDK, Transfer Learning Toolkit (TLT) and pre-trained models. This application can be used to build real-time occupancy analytics application for smart buildings, hospitals, retail, etc. The application is based on deepstream-test5 sample application.

It takes streaming video as input, counts the number of people crossing a tripwire and sends the live data to the cloud. In this application, you will learn:

  • How to use PeopleNet model from NGC
  • How to use NvDsAnalytics plugin to draw line and count people crossing the line
  • How to send the analytics data to cloud or another microservice over Kafka

You can extend this application to change region of interest, use cloud-to-edge messaging to trigger record in the DeepStream application or build analytic dashboard or database to store the metadata.

To learn how to build this demo step-by-step, check out the on-demand webinar on Creating Intelligent places using DeepStream SDK.

Prerequisites

Getting Started

  • Preferably clone the repo in $DS_SDK_ROOT/sources/apps/sample_apps/
  • Download peoplnet model: cd deepstream-occupancy-analytics/config && ./model.sh
  • For Jetson use: bin/jetson/libnvds_msgconv.so
  • For x86 use: bin/x86/libnvds_msgconv.so

Build

cd deepstream-occupancy-analytics && make

Run

./deepstream-test5-analytics -c config/test5_config_file_src_infer_tlt.txt

In another terminal run this command to see the kafka messages:

bin/kafka-console-consumer.sh --topic quickstart-events --from-beginning --bootstrap-server localhost:9092

Output

The output will look like this:

alt-text

Where you can see the kafka messages for entry and exit count.

References

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].