【多目标跟踪】ByteTrack复现(有yolov5例子)

1.环境

ubuntu16.04
cuda10.1
cudnn7
python3.6
 
 
Cython
matplotlib>=3.2.2
numpy>=1.18.5
opencv-python>=4.1.2
Pillow
PyYAML>=5.3
scipy>=1.4.1
tensorboard>=2.2
torch>=1.7.0
torchvision>=0.8.1
tqdm>=4.41.0
seaborn>=0.11.0
easydict

loguru
Pillow
thop
ninja
tabulate
tensorboard
lap
motmetrics
filterpy
h5py

# verified versions
onnx==1.8.1
onnxruntime==1.8.0
onnx-simplifier==0.3.5
git clone https://github.com/ifzhang/ByteTrack.git
cd ByteTrack
pip install -i https://pypi.tuna.tsinghua.edu.cn/simple -r requirements.txt

修改setup.py如下(否则会报ascii错误):

vim +50 setup.py

with open("README.md", "r") as f:
    long_description = f.read()

为

with open("README.md", "r", encoding='utf-8') as f:
   

你可能感兴趣的:(Pytorch,目标跟踪,pytorch,深度学习,python)