Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 964 Bytes

File metadata and controls

21 lines (16 loc) · 964 Bytes

Deepstream YOLOv8-Pose With Tracker

This is an implementation of a video analysis framework based on Deepstream YOLOv8-Pose with ByteTrack, utilizing NVIDIA Deepstream 6.2. It integrates seven different trackers, effectively compensating for scenarios where detection results are suboptimal. The framework offers two types of pipelines: one is a file sink, and the other is an RTSP sink. These two sinks are provided to facilitate visual development. This project can be deployed both on a server and on a Jetson NX device.

在这里插入图片描述

2. How to Start

rm -rf build
cmake -S . -B build
cmake --build build
# streming
./build/v8_pose_bytetrack_RTSPfile file:///your_vedio
# filesink
./build/v8_pose_bytetrack_sinkfile file:///your_vedio

在这里插入图片描述