python 3.5 and windows 10
I installed open cv using this command :
pip install opencv_python-3.1.0-cp35-cp35m-win_amd64.whl
This command in python works fine :
import cv2
But when i want to import cv2.cv :
import cv2.cv as cv
This error comes up :
import cv2.cv as cv
ImportError: No module named 'cv2.cv'; 'cv2' is not a package
So what is the problem and how can i fix it?
The Python "ModuleNotFoundError: No module named 'cv2'" occurs when we forget to install the opencv-python module before importing it or install it in an incorrect environment. To solve the error, install the module by running the pip install opencv-python command.
as @Miki said :
cv2.cv
has been removed in OpenCV3 and functions have changed
And this is OpenCV3 Documention:https://docs.opencv.org/3.0-beta/index.html
Try import cv2.cv2 as cv This worked for me to get past this error.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With