SVM on CUDA
Hi, I am using SVM. I have trained SVM and stored matrix in .xml file. I want to predict the label for each row. So, I am using below snippet in cuda Kernel function.
Ptr<svm> svm = SVM::load("trainedSVM10.xml"); classId = svm->predict(row);
but I am getting the error message is
" __host__ function("predict") from a __global__ function("kernelSVM")"
Is it possible to use OpenCV SVM on CUDA? Let me know, in case more information required. NOTE: It is working on CPU. Thank you.