I moved from python 2.7 to python 3.5
So, I had to use openCV 3.x.x.
The problem is that I cannot load SVM data.
For openCV 2.x.x, I could use
svm.load('filename')
However, for openCV 3.x.x, there is no load method.
I read this article.
But I could not find a method,
cv2.ml.SVM_load()
I think 3.1.0 is latest version, and I use it.
>>> cv2.__version__
'3.1.0'
How can I load svm data?