I want to feed the HOGDescriptor
(CPU interface) with a trained SVM. The HOG Descriptor offers a method setSVMDetector(const vector<float>& detector)
and I'm asking what has to be in vector<float>& detector
?
I have a trained SVM which can create a xml file. I want to use hog.setSVMdetector(const vector<float>& detector)
for the custom dataset. How to use this function for our own data? Kindly anyone suggest the solution.
I am using MS VS to execute the code.