Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

No module named cv

I'm trying to run this script:

https://github.com/openalpr/train-detector/blob/master/crop_plates.py

I've never dealt with python before. First of all I had some syntax errors in the print lines. They were lacking parentheses...but I'm not sure if I get this error because of the Python version I installed or this was indeed a syntax error. After fixing the syntax error I'm receiving the following error:

C:\>py crop_plates.py
Traceback (most recent call last):
File "crop_plates.py", line 7, in <module>
import cv2, cv
ImportError: No module named cv

I did the following:

Installed Python 2.7.5 32 bits.

Installed numpy 1.9.1 32 bits (also tried different versions)

Installed matplotlib 1.3.0.

Installed OpenCv

Copied cv2.pyd from

C:\Users\Me\Downloads\opencv\build\python\2.7\x86

to

C:\Python27\Lib\site-packages

But I can't find anywhere the cv.pyd file that I'm missing.

I found references to this guide for installing Opencv but it's not working http://opencv.willowgarage.com/documentation/python/

Thank you very much,

Edit: I'm running Python in Windows 7.

like image 218
Vallo Avatar asked Aug 14 '17 13:08

Vallo


1 Answers

For ImportError: No module named cv, try installing opencv-python module using below command:

pip install opencv-python
like image 189
Beginner Avatar answered Sep 26 '22 19:09

Beginner