I am having trouble getting started with pyvision because the code has a lot of "import cv" statements and I am using OpenCV 2.4.3 or newer. Import cv does not work in recent versions of OpenCV; you have to use something like "import
cv2.cv as cv".
My workaround is to create a python module in src/cv.py containing the statement "from
cv2.cv import *". This eliminates at least the most obvious errors, but I haven't gotten far yet in my testing.
I understand that OpenCV is planning to eliminate the pre-cv2 interfaces, so I am worried that this might become a bigger problem. Does anyone have a recommendation on what should be done?