use SVM to class face images [closed]
Hello, I need an exemple of using svm to class face images for exemple 2 classes in 100 images ...
int main(array<System::String ^> ^args)
{ IplImage *img;
img=cvLoadImage("image.jpg");
// SVM
Console::WriteLine(L"\n Exit ...");
Console::ReadLine();
return 0;
}
oh dear, since you seem to be a new to this,
As a second comment, OpenCV does have a SVM module which could be used for this, but you are far from training an SVM and predicting faces with it. Basically these are the steps to follow, find some info on them and report back if you have problems.
@berak , do you mean that the Java bindings do not have the full functionality in order to implement this approach?
might as well work from java, too
@Will Stewart, what @berak means is that you have to stick to a specific choice of bindings. Either go for C, C++ or java, but mixing everything up is not a good idea!