Qidian213/deep_sort_yolov3

"videocaptureasync" module?

terawise opened this issue · 4 comments

Where is the "videocaptureasync" module? I tried "demo.py", but it cannot find the module. Thank you.

Using TensorFlow backend.
Traceback (most recent call last):
File "demo.py", line 19, in
from videocaptureasync import VideoCaptureAsync
ModuleNotFoundError: No module named 'videocaptureasync'

Hi same issue
:)

  1. copy 'videocaptureasync.py' to deep_sort/
    https://github.com/Veriff/face_alignment_challenge/blob/master/videocaptureasync.py

  2. compile it
    python -m py_compile deep_sort/videocaptureasync.py -> videocaptureasync.pyc
    or
    python -m -O py_compile deep_sort/videocaptureasync.py -> videocaptureasync.pyo

编译之后也是缺乏这个模块呢