LibSVM support vector model with OpenCV CvSVM::predict
I have successfully configured CvSVM prediction at a required point in my application. However, I have a high volume of prior SVM models that were created using LibSVM. Is it possible to use these models in the CvSVM::predict function? And if so, are there any particularities with CvType (e.g. CV_32FC1 versus CV_8UC1)?
Thanks a lot!
No.In the predict function you use pre trained Model.The svm classifier use float data.