All Projects → ZhangwenguangHikvision → YoloV5_JDE_TensorRT_for_Track

ZhangwenguangHikvision / YoloV5_JDE_TensorRT_for_Track

Licence: MIT License
A multi object tracking Library Based on tensorrt

Programming Languages

C++
36643 projects - #6 most used programming language
Makefile
30231 projects
c
50402 projects - #5 most used programming language
CMake
9771 projects
Cuda
1817 projects
python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to YoloV5 JDE TensorRT for Track

watsor
Object detection for video surveillance
Stars: ✭ 203 (+420.51%)
Mutual labels:  detection, tensorrt
person-detection
TensorRT person tracking RFBNet300
Stars: ✭ 30 (-23.08%)
Mutual labels:  detection, tensorrt
yolov5-deepsort-tensorrt
A c++ implementation of yolov5 and deepsort
Stars: ✭ 207 (+430.77%)
Mutual labels:  detection, tensorrt
multiple-object-tracking
combine state of art deep neural network based detectors with most efficient trackers to solve motion based multiple objects tracking problems
Stars: ✭ 25 (-35.9%)
Mutual labels:  detection, multiple-object-tracking
object-tracking
Multiple Object Tracking System in Keras + (Detection Network - YOLO)
Stars: ✭ 89 (+128.21%)
Mutual labels:  detection, multiple-object-tracking
TensorRT-solo-python
TensorRT for SOLO(use python)
Stars: ✭ 23 (-41.03%)
Mutual labels:  tensorrt
DSNet
DSNet: A Flexible Detect-to-Summarize Network for Video Summarization
Stars: ✭ 116 (+197.44%)
Mutual labels:  detection
ManTraNet-pytorch
Implementation of the famous Image Manipulation\Forgery Detector "ManTraNet" in Pytorch
Stars: ✭ 47 (+20.51%)
Mutual labels:  detection
unsupervised llamas
Code for https://unsupervised-llamas.com
Stars: ✭ 70 (+79.49%)
Mutual labels:  detection
TensorRT-LPR
车牌识别,基于HyperLPR实现,修改模型调用方法,使用caffe+tensorRT实现GPU加速,修改了车牌检测模型
Stars: ✭ 14 (-64.1%)
Mutual labels:  tensorrt
Errata1337
No description or website provided.
Stars: ✭ 45 (+15.38%)
Mutual labels:  detection
TensorRT yolo3 module
You can import this module directly
Stars: ✭ 58 (+48.72%)
Mutual labels:  tensorrt
AI-LAB
This repository contains a docker image that I use to develop my artificial intelligence applications in an uncomplicated fashion. Python, TensorFlow, PyTorch, ONNX, Keras, OpenCV, TensorRT, Numpy, Jupyter notebook... 🐋🔥
Stars: ✭ 44 (+12.82%)
Mutual labels:  tensorrt
yolo3 tensorflow
yolo3 implement by tensorflow, including mobilenet_v1, mobilenet_v2
Stars: ✭ 48 (+23.08%)
Mutual labels:  detection
CornerNet-Lite-Pytorch
🚨🚨🚨 CornerNet:基于虚拟仿真环境下的自动驾驶交通标志识别
Stars: ✭ 34 (-12.82%)
Mutual labels:  detection
micro-code-analyser
A tiny Node.js microservice to detect the language of a code snippet
Stars: ✭ 21 (-46.15%)
Mutual labels:  detection
Kaio-machine-learning-human-face-detection
Machine Learning project a case study focused on the interaction with digital characters, using a character called "Kaio", which, based on the automatic detection of facial expressions and classification of emotions, interacts with humans by classifying emotions and imitating expressions
Stars: ✭ 18 (-53.85%)
Mutual labels:  detection
keras cv attention models
Keras/Tensorflow attention models including beit,botnet,CMT,CoaT,CoAtNet,convnext,cotnet,davit,efficientdet,efficientnet,fbnet,gmlp,halonet,lcnet,levit,mlp-mixer,mobilevit,nfnets,regnet,resmlp,resnest,resnext,resnetd,swin,tinynet,uniformer,volo,wavemlp,yolor,yolox
Stars: ✭ 159 (+307.69%)
Mutual labels:  detection
tensorRT Pro
C++ library based on tensorrt integration
Stars: ✭ 857 (+2097.44%)
Mutual labels:  tensorrt
mri-deep-learning-tools
Resurces for MRI images processing and deep learning in 3D
Stars: ✭ 56 (+43.59%)
Mutual labels:  detection

YoloV5_JDE_TensorRT_for_Track

Introduction

A multi object detect and track Library Based on tensorrt

一个基于TensorRT的多目标检测和跟踪融合算法库,可以同时支持行人的多目标检测和跟踪,当然也可以仅仅当检测库使用。

本算法的主框架采用了JDE+deepsort结构,其中由JDE算法检测出人的坐标与其对应的外观特征,然后基于deepsort的方法进行目标与运动轨迹的匹配。 JDE中的检测框架则采用了YOLOV5 L 的模型结构。

CSTrack3_0.yaml为本网络的模型结构,模型训练的代码大部分借鉴了CSTrack原文作者的开源项目,这里不再开源,大家有兴趣可以阅读CSTrack论文。 需要注意的是,本项目由于追求速度将CStrack的CCN和SAAN模块改成了JDE模块,也就是直接在anchor上提取reid特征并没有进行detect和reid的解耦模块。 如果读者需要的话可以自行修改,这样可以提升IDswich方面的性能。

Reference

Requirements

  • ubuntu 18.04 for x86
  • gcc/g++ >= 7.5.0
  • opencv >= 3.4.8
  • cuda >=10.0 cudnn >= 7.6
  • tensorRT >= 7.0.0
  • (Optional) ffmpeg (used in the video demo)

How to build and run

  • modify track/CMakeLists.txt Change opencv and tensorRT to your local directory
  • modify demo/CMakeLists.txt Change opencv and tensorRT to your local directory
  • modify demo/src/main.cpp Change video path to your local directory
  • sh make.sh
  • cd demo/build
  • ./itest

How to convert to tensort gie file

  • cd PytorchToTensorRTGIE
  • modify CMakeLists.txt Change opencv and tensorRT to your local directory
  • download jde.wts file
  • cd build
  • cmake ..
  • make
  • ./yolov5 -s
  • #Verify detect results
  • ./yolov5 -d ../sample/

Model

  • TensorRT GIE Model File: [Baidu] key: 6yc6.

Download the model and put it to /weight/

Download the model and put it to /PytorchToTensorRTGIE/

Video Demo

Acknowledgement

A large portion of code is borrowed from wang-xinyu/tensorrtx and sephirothhua/DeepSort_yoloV3-HOG_feature and , many thanks to their wonderful work!

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].