Open bwx0 opened 5 days ago
Good find! Thanks for working this out - there are a couple of other changes I'm making to make the code more readable/robust/better at catching errors when setting everything up so I should have it updated by early next week.
You can follow the progress on the branch assigned below.
Description
It seems that OWL is not reading from the video file specified in the
input_file_or_directory
field under the[System]
section of the configuration file.It looks like this behavior might be due to a missing
else
statement on line 293 ofowl.py
.Steps to Reproduce
input_file_or_directory
field e.g.../videos/example.mp4
python owl.py --show-display
Suggested Fix
Add an
else:
statement on line 293 inowl.py
as mentioned above.