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?