Commit fc71745c authored by Alexander Smorkalov's avatar Alexander Smorkalov

cv::Exception handling added. Multithreading bug fixed.

parent 3c724002
...@@ -5,6 +5,11 @@ ...@@ -5,6 +5,11 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include <android/log.h>
#define LOG_TAG "FaceDetection/DetectionBasedTracker"
#define LOGD(...) ((void)__android_log_print(ANDROID_LOG_DEBUG, LOG_TAG, __VA_ARGS__))
using namespace std; using namespace std;
using namespace cv; using namespace cv;
...@@ -20,34 +25,120 @@ JNIEXPORT jlong JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeCr ...@@ -20,34 +25,120 @@ JNIEXPORT jlong JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeCr
{ {
const char* jnamestr = jenv->GetStringUTFChars(jFileName, NULL); const char* jnamestr = jenv->GetStringUTFChars(jFileName, NULL);
string stdFileName(jnamestr); string stdFileName(jnamestr);
jlong result = 0;
try
{
DetectionBasedTracker::Parameters DetectorParams; DetectionBasedTracker::Parameters DetectorParams;
if (faceSize > 0) if (faceSize > 0)
DetectorParams.minObjectSize = faceSize; DetectorParams.minObjectSize = faceSize;
return (jlong)new DetectionBasedTracker(stdFileName, DetectorParams); result = (jlong)new DetectionBasedTracker(stdFileName, DetectorParams);
}
catch(cv::Exception e)
{
LOGD("nativeCreateObject catched cv::Exception: %s", e.what());
jclass je = jenv->FindClass("org/opencv/core/CvException");
if(!je)
je = jenv->FindClass("java/lang/Exception");
jenv->ThrowNew(je, e.what());
}
return result;
} }
JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeDestroyObject JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeDestroyObject
(JNIEnv * jenv, jclass jobj, jlong thiz) (JNIEnv * jenv, jclass jobj, jlong thiz)
{ {
try
{
((DetectionBasedTracker*)thiz)->stop();
delete (DetectionBasedTracker*)thiz; delete (DetectionBasedTracker*)thiz;
}
catch(cv::Exception e)
{
LOGD("nativeestroyObject catched cv::Exception: %s", e.what());
jclass je = jenv->FindClass("org/opencv/core/CvException");
if(!je)
je = jenv->FindClass("java/lang/Exception");
jenv->ThrowNew(je, e.what());
}
} }
JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeStart JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeStart
(JNIEnv * jenv, jclass jobj, jlong thiz) (JNIEnv * jenv, jclass jobj, jlong thiz)
{ {
try
{
((DetectionBasedTracker*)thiz)->run(); ((DetectionBasedTracker*)thiz)->run();
}
catch(cv::Exception e)
{
LOGD("nativeStart catched cv::Exception: %s", e.what());
jclass je = jenv->FindClass("org/opencv/core/CvException");
if(!je)
je = jenv->FindClass("java/lang/Exception");
jenv->ThrowNew(je, e.what());
}
} }
JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeStop JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeStop
(JNIEnv * jenv, jclass jobj, jlong thiz) (JNIEnv * jenv, jclass jobj, jlong thiz)
{ {
try
{
((DetectionBasedTracker*)thiz)->stop(); ((DetectionBasedTracker*)thiz)->stop();
}
catch(cv::Exception e)
{
LOGD("nativeStop catched cv::Exception: %s", e.what());
jclass je = jenv->FindClass("org/opencv/core/CvException");
if(!je)
je = jenv->FindClass("java/lang/Exception");
jenv->ThrowNew(je, e.what());
}
} }
JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeSetFaceSize
(JNIEnv * jenv, jclass jobj, jlong thiz, jint faceSize)
{
try
{
if (faceSize > 0)
{
DetectionBasedTracker::Parameters DetectorParams = \
((DetectionBasedTracker*)thiz)->getParameters();
DetectorParams.minObjectSize = faceSize;
((DetectionBasedTracker*)thiz)->setParameters(DetectorParams);
}
}
catch(cv::Exception e)
{
LOGD("nativeStop catched cv::Exception: %s", e.what());
jclass je = jenv->FindClass("org/opencv/core/CvException");
if(!je)
je = jenv->FindClass("java/lang/Exception");
jenv->ThrowNew(je, e.what());
}
}
JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeDetect JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeDetect
(JNIEnv * jenv, jclass jobj, jlong thiz, jlong imageGray, jlong faces) (JNIEnv * jenv, jclass jobj, jlong thiz, jlong imageGray, jlong faces)
{ {
try
{
((DetectionBasedTracker*)thiz)->process(*((Mat*)imageGray)); ((DetectionBasedTracker*)thiz)->process(*((Mat*)imageGray));
((DetectionBasedTracker*)thiz)->getObjects(RectFaces); ((DetectionBasedTracker*)thiz)->getObjects(RectFaces);
vector_Rect_to_Mat(RectFaces, *((Mat*)faces)); vector_Rect_to_Mat(RectFaces, *((Mat*)faces));
}
catch(cv::Exception e)
{
LOGD("nativeCreateObject catched cv::Exception: %s", e.what());
jclass je = jenv->FindClass("org/opencv/core/CvException");
if(!je)
je = jenv->FindClass("java/lang/Exception");
jenv->ThrowNew(je, e.what());
}
} }
\ No newline at end of file
...@@ -39,6 +39,14 @@ JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeSta ...@@ -39,6 +39,14 @@ JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeSta
JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeStop JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeStop
(JNIEnv *, jclass, jlong); (JNIEnv *, jclass, jlong);
/*
* Class: org_opencv_samples_fd_DetectionBaseTracker
* Method: nativeSetFaceSize
* Signature: (JI)V
*/
JNIEXPORT void JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeSetFaceSize
(JNIEnv *, jclass, jlong, jint);
/* /*
* Class: org_opencv_samples_fd_DetectionBaseTracker * Class: org_opencv_samples_fd_DetectionBaseTracker
* Method: nativeDetect * Method: nativeDetect
......
...@@ -20,6 +20,11 @@ public class DetectionBaseTracker ...@@ -20,6 +20,11 @@ public class DetectionBaseTracker
nativeStop(mNativeObj); nativeStop(mNativeObj);
} }
public void setMinFaceSize(int faceSize)
{
nativeSetFaceSize(mNativeObj, faceSize);
}
public void detect(Mat imageGray, MatOfRect faces) public void detect(Mat imageGray, MatOfRect faces)
{ {
nativeDetect(mNativeObj, imageGray.getNativeObjAddr(), faces.getNativeObjAddr()); nativeDetect(mNativeObj, imageGray.getNativeObjAddr(), faces.getNativeObjAddr());
...@@ -27,17 +32,17 @@ public class DetectionBaseTracker ...@@ -27,17 +32,17 @@ public class DetectionBaseTracker
public void release() public void release()
{ {
nativeStop(mNativeObj);
nativeDestroyObject(mNativeObj); nativeDestroyObject(mNativeObj);
mNativeObj = 0; mNativeObj = 0;
} }
protected long mNativeObj; protected long mNativeObj = 0;
protected static native long nativeCreateObject(String filename, int faceSize); protected static native long nativeCreateObject(String filename, int faceSize);
protected static native void nativeDestroyObject(long thiz); protected static native void nativeDestroyObject(long thiz);
protected static native void nativeStart(long thiz); protected static native void nativeStart(long thiz);
protected static native void nativeStop(long thiz); protected static native void nativeStop(long thiz);
protected static native void nativeSetFaceSize(long thiz, int faceSize);
protected static native void nativeDetect(long thiz, long inputImage, long resultMat); protected static native void nativeDetect(long thiz, long inputImage, long resultMat);
static static
......
...@@ -43,8 +43,7 @@ class FdView extends SampleCvViewBase { ...@@ -43,8 +43,7 @@ class FdView extends SampleCvViewBase {
{ {
mFaceSize = Math.round(height * faceSize); mFaceSize = Math.round(height * faceSize);
} }
mTracker.release(); mTracker.setMinFaceSize(mFaceSize);
mTracker = new DetectionBaseTracker(mCascadeFile.getAbsolutePath(), mFaceSize);
} }
public void setDtetectorType(int type) public void setDtetectorType(int type)
...@@ -120,18 +119,15 @@ class FdView extends SampleCvViewBase { ...@@ -120,18 +119,15 @@ class FdView extends SampleCvViewBase {
if (mDetectorType == CASCADE_DETECTOR) if (mDetectorType == CASCADE_DETECTOR)
{ {
if (mCascade != null) { if (mCascade != null)
mCascade.detectMultiScale(mGray, faces, 1.1, 2, 2 // TODO: objdetect.CV_HAAR_SCALE_IMAGE mCascade.detectMultiScale(mGray, faces, 1.1, 2, 2 // TODO: objdetect.CV_HAAR_SCALE_IMAGE
, new Size(mFaceSize, mFaceSize), new Size()); , new Size(mFaceSize, mFaceSize), new Size());
} }
}
else if (mDetectorType == DBT_DETECTOR) else if (mDetectorType == DBT_DETECTOR)
{ {
if (mTracker != null) if (mTracker != null)
{
mTracker.detect(mGray, faces); mTracker.detect(mGray, faces);
} }
}
else else
{ {
Log.e(TAG, "Detection method is not selected!"); Log.e(TAG, "Detection method is not selected!");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment