nrupatunga / PY-GOTURN

This is the python-caffe implementation of single object tracking from GOTURN paper
MIT License
214 stars 67 forks source link

ModuleNotFoundError: No module named 'video' #26

Open skywo1f opened 4 years ago

skywo1f commented 4 years ago

/neural-networks/PY-GOTURN$ ./show_tracker_vot.sh Traceback (most recent call last): File "/usr/lib/python3.6/runpy.py", line 193, in _run_module_as_main "main", mod_spec) File "/usr/lib/python3.6/runpy.py", line 85, in _run_code exec(code, run_globals) File "/neural-networks/PY-GOTURN/goturn/test/show_tracker_vot.py", line 10, in from ..loader.loader_vot import loader_vot File "neural-networks/PY-GOTURN/goturn/loader/loader_vot.py", line 9, in from video import video

ykchong45 commented 3 years ago

I guess you are using python3 from your error log. Hope this post on import is helpful.

What you can try is to change the line in error to from .video import video (adding a dot in front of the first "video").