Running
python3 main.py --video ../sample_data/lebron_on_court.mp4
yields the following error for me, but I can seem to install a module that will prevent this issue. Any suggestions?
Traceback (most recent call last):
File "/Users/devinross/Downloads/BasketTracking-master/main.py", line 5, in <module>
from ball_detect_track import BallDetectTrack
File "/Users/devinross/Downloads/BasketTracking-master/ball_detect_track.py", line 4, in <module>
from tools.plot_tools import plt_plot
ModuleNotFoundError: No module named 'tools.plot_tools'
Running
python3 main.py --video ../sample_data/lebron_on_court.mp4yields the following error for me, but I can seem to install a module that will prevent this issue. Any suggestions?