Remove unnecessary dependency
This commit is contained in:
parent
cb848c066c
commit
b02e68c3b5
2 changed files with 1 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = simple-online-realtime-tracking
|
name = simple-online-realtime-tracking
|
||||||
version = 0.2
|
version = 0.3
|
||||||
author = Alex Bewley
|
author = Alex Bewley
|
||||||
description = A simple online and realtime tracking algorithm for 2D multiple object tracking in video sequences
|
description = A simple online and realtime tracking algorithm for 2D multiple object tracking in video sequences
|
||||||
long_description = file: README.md
|
long_description = file: README.md
|
||||||
|
@ -18,6 +18,5 @@ packages = sort
|
||||||
python_requires = >=3.8
|
python_requires = >=3.8
|
||||||
install_requires =
|
install_requires =
|
||||||
filterpy==1.4.5
|
filterpy==1.4.5
|
||||||
scikit-image==0.17.2
|
|
||||||
lap==0.4.0
|
lap==0.4.0
|
||||||
numpy>=1.18.5
|
numpy>=1.18.5
|
|
@ -17,7 +17,6 @@
|
||||||
"""
|
"""
|
||||||
import os
|
import os
|
||||||
import numpy as np
|
import numpy as np
|
||||||
from skimage import io
|
|
||||||
|
|
||||||
import glob
|
import glob
|
||||||
import time
|
import time
|
||||||
|
|
Loading…
Reference in a new issue