forked from wmuron/motpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (22 loc) · 638 Bytes
/
Makefile
File metadata and controls
31 lines (22 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
demo:
python examples/2d_multi_object_tracking.py
install-develop:
python setup.py develop
test:
python -m pytest ./tests
env-create:
conda create --name env_motpy python=3.7 -y
env-activate:
# might fail from makefile
conda activate env_motpy
env-install:
pip install -r requirements.txt
clean:
autoflake --in-place --remove-unused-variables ./motpy/*.py ./tests/*.py
check:
mypy --ignore-missing-imports motpy
demo-mot16:
# note it requires downloading MOT16 dataset before running
python examples/mot16_challange.py --dataset_root=~/Downloads/MOT16 --seq_id=11
demo-webcam:
python examples/webcam_face_tracking.py