Skip to content

This repo contains code for object tracking based on centroid value.

Notifications You must be signed in to change notification settings

code-cse/object-tracking

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Person-Tracking

This repository contains the code for person traing using SSD and centriod.

Project Structure

├── ckpt_                # Weight file
├── images               # Images 
├── input-data           # Input data for detection.
├── Readme               # Readme for Face-detection-SSD
├── requiremnts          # Requirements file for Facenet-detection-SSD

Single Shot Detector - SSD :

Single-shot MultiBox Detector is a one-stage object detection algorithm. This means that, in contrast to two-stage models, SSDs do not need an initial object proposals generation step. This makes it, usually, faster and more efficient than two-stage approaches such as Faster R-CNN, although it sacrifices performance for detection of small objects to gain speed.

Require packages:

virtualenv --python=python3 env_fds

source env_fds/bin/activate

pip install -r requirements.txt

Architecture of SSD :

Single class object detection models will need less learnable features. Less parameters mean that the network will be smaller. Smaller networks run faster because it requires less computations.

alt text

alt text

Research Paper Reference for this repository:

  1. SSD: Single Shot MultiBox Detector

  2. AN ALGORITHM FOR CENTROID-BASED TRACKING OF MOVING OBJECTS

Releases

No releases published

Packages

No packages published

Languages