Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 876 Bytes

README.md

File metadata and controls

39 lines (30 loc) · 876 Bytes

pyct

A python binding for compressive tracking which is designed for real-time object tracking.

Demo

Packages required

  • python 3
  • opencv 3 with python 3 support
  • numpy
  • cython

Build

Following command will build the python binding for the c++ version of compressive tracking.

python3 setup.py

Run the tracker

From the webcam:

python3 run.py

From a video file with the detecting box specified:

python3 run.py -v video.mp4 -b "(10, 10, 20, 20)" 

For more definitions about the arguments, please execute

python3 run.py -h

Remark

There is also a post describing some details about this binding.