All Projects → visionml → Pytracking

visionml / Pytracking

Licence: gpl-3.0
Visual tracking library based on PyTorch.

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Pytracking

Benchmark results
Visual Tracking Paper List
Stars: ✭ 3,672 (+99.24%)
Mutual labels:  tracking, visual-tracking
Online learning
Online Learning for Human Detection in 3D Point Clouds
Stars: ✭ 97 (-94.74%)
Mutual labels:  tracking
Remoraj
Extensible, low overhead Java Bytecode instrumentation agent for optimizing Java app performance
Stars: ✭ 53 (-97.12%)
Mutual labels:  tracking
Vglist
A video game library tracking web app built in Rails and powered by Wikidata.
Stars: ✭ 78 (-95.77%)
Mutual labels:  tracking
Find Maraudersmap
Internal positioning for everyone, in the style of Harry Potter
Stars: ✭ 62 (-96.64%)
Mutual labels:  tracking
Dfpm
DFPM is a browser extension for detecting browser fingerprinting.
Stars: ✭ 81 (-95.6%)
Mutual labels:  tracking
Blender autotracker
Blender autotracker addon
Stars: ✭ 47 (-97.45%)
Mutual labels:  tracking
Iros20 6d Pose Tracking
[IROS 2020] se(3)-TrackNet: Data-driven 6D Pose Tracking by Calibrating Image Residuals in Synthetic Domains
Stars: ✭ 113 (-93.87%)
Mutual labels:  tracking
Awesome Quantified Self
📊 Websites, Resources, Devices, Wearables, Applications, and Platforms for Self Tracking
Stars: ✭ 1,315 (-28.65%)
Mutual labels:  tracking
Memtrack
Code for "Learning Dynamic Memory Networks for Object Tracking"
Stars: ✭ 74 (-95.98%)
Mutual labels:  tracking
Instatrack
Convert Instagram user ID to username & vice versa
Stars: ✭ 70 (-96.2%)
Mutual labels:  tracking
Mrs uav system
The entry point to the MRS UAV system.
Stars: ✭ 64 (-96.53%)
Mutual labels:  tracking
Orgstat
Statistics visualizer for org-mode
Stars: ✭ 83 (-95.5%)
Mutual labels:  tracking
Drol
Discriminative and Robust Online Learning for Siamese Visual Tracking [AAAI2020]
Stars: ✭ 54 (-97.07%)
Mutual labels:  tracking
Hackvault
A container repository for my public web hacks!
Stars: ✭ 1,364 (-25.99%)
Mutual labels:  tracking
React Tracking
🎯 Declarative tracking for React apps.
Stars: ✭ 1,062 (-42.38%)
Mutual labels:  tracking
Siamvgg
SiamVGG: Visual Tracking with Deeper Siamese Networks
Stars: ✭ 69 (-96.26%)
Mutual labels:  tracking
Odas web
A desktop visualization GUI for the ODAS library
Stars: ✭ 78 (-95.77%)
Mutual labels:  tracking
Block
Let's make an annoyance free, better open internet, altogether!
Stars: ✭ 1,849 (+0.33%)
Mutual labels:  tracking
Jpdaf tracking
A tracker based on joint probabilistic data association filtering.
Stars: ✭ 107 (-94.19%)
Mutual labels:  tracking

PyTracking

A general python framework for visual object tracking and video object segmentation, based on PyTorch.

📣 Two tracking/VOS papers accepted at ICCV 2021! 👇

Highlights

KeepTrack, LWL, KYS, PrDiMP, DiMP and ATOM Trackers

Official implementation of the KeepTrack (ICCV 2021), LWL (ECCV 2020), KYS (ECCV 2020), PrDiMP (CVPR 2020), DiMP (ICCV 2019), and ATOM (CVPR 2019) trackers, including complete training code and trained models.

Tracking Libraries

Libraries for implementing and evaluating visual trackers. It includes

  • All common tracking and video object segmentation datasets.
  • Scripts to analyse tracker performance and obtain standard performance scores.
  • General building blocks, including deep networks, optimization, feature extraction and utilities for correlation filter tracking.

Training Framework: LTR

LTR (Learning Tracking Representations) is a general framework for training your visual tracking networks. It is equipped with

  • All common training datasets for visual object tracking and segmentation.
  • Functions for data sampling, processing etc.
  • Network modules for visual tracking.
  • And much more...

Model Zoo

The tracker models trained using PyTracking, along with their results on standard tracking benchmarks are provided in the model zoo.

Trackers

The toolkit contains the implementation of the following trackers.

KeepTrack (ICCV 2021)

[Paper] [Raw results] [Models] [Training Code] [Tracker Code]

Official implementation of KeepTrack. KeepTrack actively handles distractor objects to continue tracking the target. It employs a learned target candidate association network, that allows to propagate the identities of all target candidates from frame-to-frame. To tackle the problem of lacking groundtruth correspondences between distractor objects in visual tracking, it uses a training strategy that combines partial annotations with self-supervision.

KeepTrack_teaser_figure

LWL (ECCV 2020)

[Paper] [Raw results] [Models] [Training Code] [Tracker Code]

Official implementation of the LWL tracker. LWL is an end-to-end trainable video object segmentation architecture which captures the current target object information in a compact parametric model. It integrates a differentiable few-shot learner module, which predicts the target model parameters using the first frame annotation. The learner is designed to explicitly optimize an error between target model prediction and a ground truth label. LWL further learns the ground-truth labels used by the few-shot learner to train the target model. All modules in the architecture are trained end-to-end by maximizing segmentation accuracy on annotated VOS videos.

LWL overview figure

KYS (ECCV 2020)

[Paper] [Raw results] [Models] [Training Code] [Tracker Code]

Official implementation of the KYS tracker. Unlike conventional frame-by-frame detection based tracking, KYS propagates valuable scene information through the sequence. This information is used to achieve an improved scene-aware target prediction in each frame. The scene information is represented using a dense set of localized state vectors. These state vectors are propagated through the sequence and combined with the appearance model output to localize the target. The network is learned to effectively utilize the scene information by directly maximizing tracking performance on video segments KYS overview figure

PrDiMP (CVPR 2020)

[Paper] [Raw results] [Models] [Training Code] [Tracker Code]

Official implementation of the PrDiMP tracker. This work proposes a general formulation for probabilistic regression, which is then applied to visual tracking in the DiMP framework. The network predicts the conditional probability density of the target state given an input image. The probability density is flexibly parametrized by the neural network itself. The regression network is trained by directly minimizing the Kullback-Leibler divergence.

DiMP (ICCV 2019)

[Paper] [Raw results] [Models] [Training Code] [Tracker Code]

Official implementation of the DiMP tracker. DiMP is an end-to-end tracking architecture, capable of fully exploiting both target and background appearance information for target model prediction. It is based on a target model prediction network, which is derived from a discriminative learning loss by applying an iterative optimization procedure. The model prediction network employs a steepest descent based methodology that computes an optimal step length in each iteration to provide fast convergence. The model predictor also includes an initializer network that efficiently provides an initial estimate of the model weights.

DiMP overview figure

ATOM (CVPR 2019)

[Paper] [Raw results] [Models] [Training Code] [Tracker Code]

Official implementation of the ATOM tracker. ATOM is based on (i) a target estimation module that is trained offline, and (ii) target classification module that is trained online. The target estimation module is trained to predict the intersection-over-union (IoU) overlap between the target and a bounding box estimate. The target classification module is learned online using dedicated optimization techniques to discriminate between the target object and background.

ATOM overview figure

ECO/UPDT (CVPR 2017/ECCV 2018)

[Paper] [Models] [Tracker Code]

An unofficial implementation of the ECO tracker. It is implemented based on an extensive and general library for complex operations and Fourier tools. The implementation differs from the version used in the original paper in a few important aspects.

  1. This implementation uses features from vgg-m layer 1 and resnet18 residual block 3.
  2. As in our later UPDT tracker, seperate filters are trained for shallow and deep features, and extensive data augmentation is employed in the first frame.
  3. The GMM memory module is not implemented, instead the raw projected samples are stored.

Please refer to the official implementation of ECO if you are looking to reproduce the results in the ECO paper or download the raw results.

Installation

Clone the GIT repository.

git clone https://github.com/visionml/pytracking.git

Clone the submodules.

In the repository directory, run the commands:

git submodule update --init  

Install dependencies

Run the installation script to install all the dependencies. You need to provide the conda install path (e.g. ~/anaconda3) and the name for the created conda environment (here pytracking).

bash install.sh conda_install_path pytracking

This script will also download the default networks and set-up the environment.

Note: The install script has been tested on an Ubuntu 18.04 system. In case of issues, check the detailed installation instructions.

Windows: (NOT Recommended!) Check these installation instructions.

Let's test it!

Activate the conda environment and run the script pytracking/run_webcam.py to run ATOM using the webcam input.

conda activate pytracking
cd pytracking
python run_webcam.py dimp dimp50    

What's next?

pytracking - for implementing your tracker

ltr - for training your tracker

Contributors

Main Contributors

Guest Contributors

Acknowledgments

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