You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In base.py, try: import cv2.cv as cv except ImportError: try: import cv except ImportError: raise ImportError("Cannot load OpenCV library which is required by SimpleCV")
Since the newest OpenCV only support import cv2, should this part be updated?
The text was updated successfully, but these errors were encountered:
I got this problem today. But now I solved it, as far as I think, it is possiblely that you did not install 'python-opencv'. Remember to install all the reliable packages.
If you counld not install all of them, Just 'sudo apt-get update', and then try again to install the above packages. If this operation can not make either, use 'sudo pip install'. Hope you can solve it.
In base.py,
try: import cv2.cv as cv except ImportError: try: import cv except ImportError: raise ImportError("Cannot load OpenCV library which is required by SimpleCV")
Since the newest OpenCV only support import cv2, should this part be updated?
The text was updated successfully, but these errors were encountered: