First time here? Check out the FAQ!
answered 2016-01-18 09:40:12 -0600
I had the same problem. Wrap the numpy array with cv.fromarray()
import numpy import cv a = numpy.ones((5,5,1),float) cv.Save("a.xml",cv.fromarray(a))
It is depreciated functionality but ATM works.