I am on Mac OSX El Capitan and am trying to install opencv. I am using homebrew with this command.
Sumant:Sumant$ brew install opencv
The result is Warning: homebrew/science/opencv 2.4.13.2_1 is already installed
Even though it says that opencv is already installed, I can't seem to use it with python. Importing cv2 on python gives the error
>>> import cv2
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: No module named cv2
Is opencv different from cv2, if so how do I download cv2 (I already tried to look up questions on stackoverflow but none of those methods work).