Opencv module not found

File “”, line 1
sys.path.append(“C:\Users\SHIVANSHU\Lib\site-packages”)
^
SyntaxError: invalid character in identifier

change qoutes with double qoutes in code cell … here it is different qoutes.

File “”, line 1
sys.path.append(“C:\Users\SHIVANSHU\Lib\site-packages”)
^
SyntaxError: (unicode error) ‘unicodeescape’ codec can’t decode bytes in position 2-3: truncated \UXXXXXXXX escape

sys.path.append("C:\Users\SHIVANSHU\Lib\site-packages")

its imported but now showing this error
import cv2
2
----> 3 img = cv2.imread(“logo.png”)
4 gray = cv2.imread(‘logo.png’,cv2.IMREAD_GRAYSCALE)
5

AttributeError: module ‘cv2’ has no attribute ‘imread’

try cv2.cv2.imread()…
does it worked.?

module ‘cv2’ has no attribute ‘cv2’

AttributeError Traceback (most recent call last)
in
1 import cv2
2
----> 3 img = cv2.cv2.imread(“logo.png”)
4 gray = cv2.imread(‘logo.png’,cv2.IMREAD_GRAYSCALE)
5

AttributeError: module ‘cv2’ has no attribute ‘cv2’

what is the name of your script?

it is simply Untitled15.ipynb

is there any other folder or script in the same directory by name cv2

no. the same code is working in IDLE but not in notebook

is pillow and scipy installed in your system ?

i havenot installed it manually . if automatically installed not know about it

just check if they are installed or not

its not installed
please tell me how to install

just use pip install for all

pip install scipy
pip install Pillow

its intalled now what to do next

now try to install import cv2 and cv2.imread() function

ModuleNotFoundError Traceback (most recent call last)
in
----> 1 import cv2

~\Lib\site-packages\cv2_init_.py in
3 import sys
4
----> 5 from .cv2 import *
6 from .data import *
7

ModuleNotFoundError: No module named ‘cv2.cv2’