We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I am not sure if this is platform specific (Debian 11 on my machine), but there is from cv2 import cv2 on line 12, which gives me an error message.
from cv2 import cv2
ImportError: Bindings generation error. Submodule name should always start with a parent module name. Parent name: cv2.cv2. Submodule name: cv2
Changing it to import cv2 allows me to run the program without an error message.
import cv2
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I am not sure if this is platform specific (Debian 11 on my machine), but there is
from cv2 import cv2
on line 12, which gives me an error message.
Changing it to
import cv2
allows me to run the program without an error message.
The text was updated successfully, but these errors were encountered: