cv::Exception handling added. Multithreading bug fixed.
This commit is contained in:
parent
3c7240024e
commit
fc71745caf
@ -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;
|
||||||
|
|
||||||
@ -18,36 +23,122 @@ inline void vector_Rect_to_Mat(vector<Rect>& v_rect, Mat& mat)
|
|||||||
JNIEXPORT jlong JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeCreateObject
|
JNIEXPORT jlong JNICALL Java_org_opencv_samples_fd_DetectionBaseTracker_nativeCreateObject
|
||||||
(JNIEnv * jenv, jclass jobj, jstring jFileName, jint faceSize)
|
(JNIEnv * jenv, jclass jobj, jstring jFileName, jint faceSize)
|
||||||
{
|
{
|
||||||
const char* jnamestr = jenv->GetStringUTFChars(jFileName, NULL);
|
const char* jnamestr = jenv->GetStringUTFChars(jFileName, NULL);
|
||||||
string stdFileName(jnamestr);
|
string stdFileName(jnamestr);
|
||||||
DetectionBasedTracker::Parameters DetectorParams;
|
jlong result = 0;
|
||||||
if (faceSize > 0)
|
|
||||||
DetectorParams.minObjectSize = faceSize;
|
try
|
||||||
return (jlong)new DetectionBasedTracker(stdFileName, DetectorParams);
|
{
|
||||||
|
DetectionBasedTracker::Parameters DetectorParams;
|
||||||
|
if (faceSize > 0)
|
||||||
|
DetectorParams.minObjectSize = faceSize;
|
||||||
|
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)
|
||||||
{
|
{
|
||||||
delete (DetectionBasedTracker*)thiz;
|
try
|
||||||
|
{
|
||||||
|
((DetectionBasedTracker*)thiz)->stop();
|
||||||
|
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)
|
||||||
{
|
{
|
||||||
((DetectionBasedTracker*)thiz)->run();
|
try
|
||||||
|
{
|
||||||
|
((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)
|
||||||
{
|
{
|
||||||
((DetectionBasedTracker*)thiz)->stop();
|
try
|
||||||
|
{
|
||||||
|
((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)
|
||||||
{
|
{
|
||||||
((DetectionBasedTracker*)thiz)->process(*((Mat*)imageGray));
|
try
|
||||||
((DetectionBasedTracker*)thiz)->getObjects(RectFaces);
|
{
|
||||||
vector_Rect_to_Mat(RectFaces, *((Mat*)faces));
|
((DetectionBasedTracker*)thiz)->process(*((Mat*)imageGray));
|
||||||
|
((DetectionBasedTracker*)thiz)->getObjects(RectFaces);
|
||||||
|
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());
|
||||||
|
}
|
||||||
}
|
}
|
@ -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
|
|||||||
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
|
|||||||
|
|
||||||
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 {
|
|||||||
{
|
{
|
||||||
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,17 +119,14 @@ 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
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user