I have copied the cv2.pyd file in to Python27\Lib\site-packages importing CV2 works well but import CV won't works which throws an error.
Error looks like this :
>>> import cv
Traceback (most recent call last):
File "<pyshell#1>", line 1, in <module>
import cv
ImportError: No module named cv
>>> import cv2
>>>
I am using python 2.7 on windows pc.
How to solve this?