Python OpenCV Image Array
Python openCV: TypeError
TypeError: CvArr argument 'image' must be IplImage, CvMat or CvMatND. Use fromarray() to convert numpy arrays to CvMat or cvMatND
The question technically asks how to convert a NumPy Array (analogous to CV2 array) into a Mat object (CV). For anyone who is interest, this can be done by:
mat_array = cv.fromarray(numpy_array)