-
Notifications
You must be signed in to change notification settings - Fork 884
New issue
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
ImportError: DLL load failed while importing cv2: The specified module could not be found. #976
Comments
Install OpenCV using Anaconda:
If the installation is successful, you should be able to import the
This command will install OpenCV and its dependencies using pip.
|
OpenCV team does not maintain Anacoda packages, pip packages only. Looks like your OpenCV installation is not complete or broken. You can trace OpenCV loading process by setting |
I was facing the same issue. I have python 3.11.7 with opencv 4.9.0. It was working fine until I started working with opencv and C++ in visual studio, which caused this problem. I don't know how the problem occurred, but it prevented me from working with python. I uninstalled visual studio and tried again, but the problem persisted. I resolved the issue by following these steps:
if the above requirements are satisfied but the issue still persists, try reinstalling the opencv package:
delete the cv2 folder inside
this method worked for me |
Expected behaviour
I'am trying to run a cod about document classification and I got this error i try to install the library via Anaconda but doesn't exist.
import pandas as pd
import numpy as np
import tensorflow as tf
import string
import nltk
import pathlib
import os
import cv2
import matplotlib.pyplot as plt
from tensorflow.keras.utils import to_categorical
from tensorflow.keras.metrics import TruePositives, FalsePositives, TrueNegatives, FalseNegatives, BinaryAccuracy, Precision, Recall, AUC
The text was updated successfully, but these errors were encountered: