All Projects → mj000001 → Object-Detection-And-Tracking

mj000001 / Object-Detection-And-Tracking

Licence: other
Target detection in the first frame and Tracking target by SiamRPN.

Programming Languages

python
139335 projects - #7 most used programming language
c
50402 projects - #5 most used programming language
Cuda
1817 projects

Projects that are alternatives of or similar to Object-Detection-And-Tracking

Face Track Detect Extract
💎 Detect , track and extract the optimal face in multi-target faces (exclude side face and select the optimal face).
Stars: ✭ 434 (+1215.15%)
Mutual labels:  tracking, detection
Mcmot
Real time one-stage multi-class & multi-object tracking based on anchor-free detection and re-id
Stars: ✭ 181 (+448.48%)
Mutual labels:  tracking, detection
Brfv4 javascript examples
BRFv4 - HTML5/Javascript - examples project. Reference implementation for all other platform example packages.
Stars: ✭ 460 (+1293.94%)
Mutual labels:  tracking, detection
Tensorflow 2.x Yolov3
YOLOv3 implementation in TensorFlow 2.3.1
Stars: ✭ 300 (+809.09%)
Mutual labels:  tracking, detection
brfv4 android examples
Android Studio project (Java)
Stars: ✭ 43 (+30.3%)
Mutual labels:  tracking, detection
Sst
Single Shot Tracker
Stars: ✭ 350 (+960.61%)
Mutual labels:  tracking, detection
Jeelizfacefilter
Javascript/WebGL lightweight face tracking library designed for augmented reality webcam filters. Features : multiple faces detection, rotation, mouth opening. Various integration examples are provided (Three.js, Babylon.js, FaceSwap, Canvas2D, CSS3D...).
Stars: ✭ 2,042 (+6087.88%)
Mutual labels:  tracking, detection
AIODrive
Official Python/PyTorch Implementation for "All-In-One Drive: A Large-Scale Comprehensive Perception Dataset with High-Density Long-Range Point Clouds"
Stars: ✭ 32 (-3.03%)
Mutual labels:  tracking, detection
VideoRecognitionTracking
Real time object or face detection recognition and tracking in video. The Full end-to-end project.
Stars: ✭ 36 (+9.09%)
Mutual labels:  tracking, detection
Shadowless
A Fast and Open Source Autonomous Perception System.
Stars: ✭ 29 (-12.12%)
Mutual labels:  detection, faster-rcnn
Sipmask
SipMask: Spatial Information Preservation for Fast Image and Video Instance Segmentation (ECCV2020)
Stars: ✭ 255 (+672.73%)
Mutual labels:  tracking, detection
Awesome-Vision-Transformer-Collection
Variants of Vision Transformer and its downstream tasks
Stars: ✭ 124 (+275.76%)
Mutual labels:  tracking, detection
brfv4 win examples
Windows C++ examples utilizing OpenCV for camera access and drawing the face tracking results.
Stars: ✭ 13 (-60.61%)
Mutual labels:  tracking, detection
Vehicle Detection And Tracking
Computer vision based vehicle detection and tracking using Tensorflow Object Detection API and Kalman-filtering
Stars: ✭ 384 (+1063.64%)
Mutual labels:  tracking, detection
sqair
Implementation of Sequential Attend, Infer, Repeat (SQAIR)
Stars: ✭ 96 (+190.91%)
Mutual labels:  tracking, detection
Deep Learning For Tracking And Detection
Collection of papers, datasets, code and other resources for object tracking and detection using deep learning
Stars: ✭ 1,920 (+5718.18%)
Mutual labels:  tracking, detection
jeelizPupillometry
Real-time pupillometry in the web browser using a 4K webcam video feed processed by this WebGL/Javascript library. 2 demo experiments are included.
Stars: ✭ 78 (+136.36%)
Mutual labels:  tracking, detection
VISO
[IEEE TGRS 2021] Detecting and Tracking Small and Dense Moving Objects in Satellite Videos: A Benchmark
Stars: ✭ 61 (+84.85%)
Mutual labels:  tracking, detection
napari-hub
Discover, install, and share napari plugins
Stars: ✭ 44 (+33.33%)
Mutual labels:  tracking, detection
opencv TLD
TLD:tracking-learning-detection 跟踪算法
Stars: ✭ 41 (+24.24%)
Mutual labels:  tracking, detection

Automatic-Detection-And-Tracking

Objects detection in the first frame and Tracking special object by SiamRPN.

Overview

This repo illustrates a automatic detection and tracking of single object. In the process, It first detects all the objects in the first frame of input videos. Next, we should input a examplar image and it can determine the initial position of the target that is most similar to the examplar image. Finally the tracker could finish the single object tracking.

Key files in this repo

  • demo.py -- implements the detection, identify and tracking pipeline.
  • detection folder -- Faster RCNN detection
  • identify folder -- phash to identify tracking object
  • videos folder -- videos needed to handle
  • examplar.png -- a snapshot of object to track

Notes

Detection

It use Faster RCNN to finish object detection. This code was based on longcw's repo longcw/faster_rcnn_pytorch. It will be improved according to the latest papers.

Identify

It use phash to identify a special object.I will add Siamese Net and traditional Digital image processing to do it in the future.

Tracking

It use SiamRPN to finish object tracking. The codes was based on huanglianghua/siamrpn-pytorch. It will be improved according to the latest papers(DSiamRPN).

Prerequisites

  • Python 3.6
  • PyTorch 0.4.0 or higher
  • CUDA 8.0 or higher

For example

In Detection stage. It will detects all cars in the first frame as shown below. image

In Identify stage. We want to track the car as shown below. It could determine the initial position of the target based on Detection stage.
image

In Tracking stage. It will track the car.

Installation and demo

  1. Clone the code:
git clone https://github.com/mj000001/Object-Detection-And-Tracking.git
  1. Create a folder:
cd Object-Detection-And-Tracking && mkdir pretrained
  1. Pretrained Model:

In the root directory of Object-Detection-And-Tracking:Download the pretrained model.pth and VGGnet_fast_rcnn_iter_70000 from Baidu Yun with extraction code gm4f and put the files under pretrained/.

  1. Compilation:

Install python package

pip install -r requirements.txt

Build the Cython modules for nms and the roi_pooling layer

cd detection/faster_rcnn
./make.sh
  1. Run Demo:
python demo.py
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].