i\'m trying to do face detection through a webcam, but i got an error, cascadeclassifier error.
After do some testing, i found this line of code generate the error <
Try initialising CascadeClassifier objects in BaseLoaderCallBack. The OpenCV needs to load completely before initialising the CasCadeClassifier objects.
Place this in onCreate() or onResume():
if (!OpenCVLoader.initDebug())
OpenCVLoader.initAsync(OpenCVLoader.OPENCV_VERSION, this, baseCallBack);
else
baseCallBack.onManagerConnected(LoaderCallbackInterface.SUCCESS);
define baseCallBack as:
private BaseLoaderCallback baseCallBack = new BaseLoaderCallback(this) {
@Override
public void onManagerConnected(int status) {
if (status == SUCCESS) {
try {
initClassifiers(); // initialise here
} catch (IOException e) {
e.printStackTrace();
}
Log.d("OpenCVLoad", "OpenCV Loaded");
} else {
super.onManagerConnected(status);
}
}
};
finally i found the answer,
i should load the library before use the cascadeclassifier. so just put this code
System.loadLibrary(Core.NATIVE_LIBRARY_NAME);
before the cascadeclassifier.