When I try to change the Image Channel of Interest (setImageCOI), Python gives me this error:
im = cv2.imread('image.jpg')
cv2.setImageCOI(im, 1)
AttributeError: 'module' object has no attribute 'setImageCOI'
http://opencv.willowgarage.com/documentation/python/operations_on_arrays.html
Do I need to specially install the modules that allow for operations on arrays?
That method is implemented in the
cvmodule underSetImageCOI(notice the capitalS):