Skip to content

Files

Latest commit

8a55925 · May 18, 2020

History

History

demo

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 13, 2020
May 18, 2020

IOU Tracker Demo

There are two main approaches to run IOUTracker. The first is to load it as a package, this way acts as the usual way you import a module. The second is to run inside a container.

Run as a package

You can start a tutorial using the notebook. Otherwise, you can install it from scratch and use it in your script.

  • Install the IOUTracker first.
git clone https://github.com/jiankaiwang/ioutracker
cd ioutracker
pip install -q --no-cache-dir -e .
  • Import the package.
import ioutracker
print(ioutracker.__version__)

Run inside a container

You can run a jupyter notebook-ready environment and also start a tutorial using the notebook. You might require to mount the data volume containing the MOT dataset to the /tmp/MOT (default downloading path) inside the container.

docker pull ioutracker
docker run --rm --name ioutracker -p 8888:8888 -v /tmp/MOT:/tmp/MOT ioutracker