import cv2 as cv frame_copy = cv.CreateImage((frame.width, frame.height), cv.IPL_DEPTH_8U, frame.nChannels) 

AttributeError: 'module' object has no attribute 'CreateImage'

Has the function changed from the new version of OpenCV?

0