Ask Your Question

Salahi's profile - activity

2014-05-21 09:20:45 -0600 received badge  Student (source)
2013-12-10 01:48:49 -0600 commented question Reaching CascadeClassfier XMLs from full Native C++ Android App

Thank you mate. Actually i have looked at it before but i couldnt get the point and now i looked again and got it, i dont know why.

2013-12-06 08:11:49 -0600 received badge  Editor (source)
2013-12-06 08:10:46 -0600 asked a question Reaching CascadeClassfier XMLs from full Native C++ Android App

Hello all,

I'm trying to build Native C++ Android app but i am having difficulties to load, for example, lbpcascade_frontalface.xml file from cpp file.

I have examined the samples but what i want to do is, simply something like this;

/*

CascadeClassifier face_cascade;
face_cascade.load("lbpcascade_frontalface.xml");
while (1)
{
    std::vector<Rect> faces;
    face_cascade.detectMultiScale( image, faces, 1.1f, 4, CASCADE_FIND_BIGGEST_OBJECT,  Size(40, 40) );
}

*/

The problem here is the path of the XML File, what should it be? The XML file can be on Assets folder or anything else in the project.

Thanks in advance.

2013-12-06 08:02:31 -0600 received badge  Critic (source)