First time here? Check out the FAQ!
answered 2013-10-15 02:42:39 -0600
import cv will load the old c-api bindings. IplImage and such. try not to use that, as the support for the old api will end soon.
import cv
instead, use import cv2, which wraps the c++ api, and uses numpy arrays for images
import cv2