You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Bug/Issue Description:
opencv is marked as optional, but dvr-scan does not work without it.
It happens on main c00ff6f.
Required Information:
$ dvr-scan --help
[...]
from dvr_scan.__main__ import main
File "/home/frafra/Code/DVR-Scan/dvr_scan/__init__.py", line 39, in <module>
import dvr_scan.opencv_loader as _ # noqa: F401
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/home/frafra/Code/DVR-Scan/dvr_scan/opencv_loader.py", line 34, in <module>
raise ModuleNotFoundError(
ModuleNotFoundError: OpenCV could not be found, try installing opencv-python:
pip install opencv-python
Expected Behavior:
opencv should be optional, right? :)