Ei kuvausta

root 4247e6390f Initial commit 4 vuotta sitten
bin 4247e6390f Initial commit 4 vuotta sitten
config 4247e6390f Initial commit 4 vuotta sitten
images 4247e6390f Initial commit 4 vuotta sitten
includes 4247e6390f Initial commit 4 vuotta sitten
LICENSE.md 4247e6390f Initial commit 4 vuotta sitten
Makefile 4247e6390f Initial commit 4 vuotta sitten
README.md 4247e6390f Initial commit 4 vuotta sitten
deepstream_nvdsanalytics_meta.cpp 4247e6390f Initial commit 4 vuotta sitten
deepstream_test5_app_main.c 4247e6390f Initial commit 4 vuotta sitten

README.md

People count application With Deepstream SDK and Transfer Learning Toolkit

Description

This is a demo project for "People Count Application" using NVIDIA Deepstream SDK and Transfer Learning Toolkit (TLT).The application is based on deepstream-test5 application. It takes the input source data, uses PeopleNet model for inferencing and sends the people count data to cloud.

Prerequisites

tar -xzf kafka_2.13-2.6.0.tgz

cd kafka_2.13-2.6.0

bin/zookeeper-server-start.sh config/zookeeper.properties

bin/kafka-server-start.sh config/server.properties

bin/kafka-topics.sh --create --topic quickstart-events --bootstrap-server localhost:9092

Getting Started

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

Build

cd demo && make

Run

./deepstream_test5 -c configs/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