-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathDetectionBasedTracker_jni.cpp
executable file
·284 lines (284 loc) · 10.2 KB
/
DetectionBasedTracker_jni.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
//#include <DetectionBasedTracker_jni.h>
//#include <opencv2/core.hpp>
//#include <opencv2/objdetect.hpp>
//
//#include <string>
//#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 cv;
//
//inline void vector_Rect_to_Mat(vector<Rect>& v_rect, Mat& mat)
//{
// mat = Mat(v_rect, true);
//}
//
//class CascadeDetectorAdapter: public DetectionBasedTracker::IDetector
//{
//public:
// CascadeDetectorAdapter(cv::Ptr<cv::CascadeClassifier> detector):
// IDetector(),
// Detector(detector)
// {
// LOGD("CascadeDetectorAdapter::Detect::Detect");
// CV_Assert(detector);
// }
//
// void detect(const cv::Mat &Image, std::vector<cv::Rect> &objects)
// {
// LOGD("CascadeDetectorAdapter::Detect: begin");
// LOGD("CascadeDetectorAdapter::Detect: scaleFactor=%.2f, minNeighbours=%d, minObjSize=(%dx%d), maxObjSize=(%dx%d)", scaleFactor, minNeighbours, minObjSize.width, minObjSize.height, maxObjSize.width, maxObjSize.height);
// Detector->detectMultiScale(Image, objects, scaleFactor, minNeighbours, 0, minObjSize, maxObjSize);
// LOGD("CascadeDetectorAdapter::Detect: end");
// }
//
// virtual ~CascadeDetectorAdapter()
// {
// LOGD("CascadeDetectorAdapter::Detect::~Detect");
// }
//
//private:
// CascadeDetectorAdapter();
// cv::Ptr<cv::CascadeClassifier> Detector;
//};
//
//struct DetectorAgregator
//{
// cv::Ptr<CascadeDetectorAdapter> mainDetector;
// cv::Ptr<CascadeDetectorAdapter> trackingDetector;
//
// cv::Ptr<DetectionBasedTracker> tracker;
// DetectorAgregator(cv::Ptr<CascadeDetectorAdapter>& _mainDetector, cv::Ptr<CascadeDetectorAdapter>& _trackingDetector):
// mainDetector(_mainDetector),
// trackingDetector(_trackingDetector)
// {
// CV_Assert(_mainDetector);
// CV_Assert(_trackingDetector);
//
// DetectionBasedTracker::Parameters DetectorParams;
// tracker = makePtr<DetectionBasedTracker>(mainDetector, trackingDetector, DetectorParams);
// }
//};
//
//JNIEXPORT jlong JNICALL Java_demo_rayootech_com_cvcheck_DetectionBasedTracker_nativeCreateObject
//(JNIEnv * jenv, jclass, jstring jFileName, jint faceSize)
//{
// LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject enter");
// const char* jnamestr = jenv->GetStringUTFChars(jFileName, NULL);
// string stdFileName(jnamestr);
// jlong result = 0;
//
// LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject");
//
// try
// {
// cv::Ptr<CascadeDetectorAdapter> mainDetector = makePtr<CascadeDetectorAdapter>(
// makePtr<CascadeClassifier>(stdFileName));
// cv::Ptr<CascadeDetectorAdapter> trackingDetector = makePtr<CascadeDetectorAdapter>(
// makePtr<CascadeClassifier>(stdFileName));
// result = (jlong)new DetectorAgregator(mainDetector, trackingDetector);
// if (faceSize > 0)
// {
// mainDetector->setMinObjectSize(Size(faceSize, faceSize));
// //trackingDetector->setMinObjectSize(Size(faceSize, faceSize));
// }
// }
// catch(cv::Exception& e)
// {
// LOGD("nativeCreateObject caught 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());
// }
// catch (...)
// {
// LOGD("nativeCreateObject caught unknown exception");
// jclass je = jenv->FindClass("java/lang/Exception");
// jenv->ThrowNew(je, "Unknown exception in JNI code of DetectionBasedTracker.nativeCreateObject()");
// return 0;
// }
//
// LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject exit");
// return result;
//}
//
//JNIEXPORT void JNICALL Java_demo_rayootech_com_cvcheck_DetectionBasedTracker_nativeDestroyObject
//(JNIEnv * jenv, jclass, jlong thiz)
//{
// LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject");
//
// try
// {
// if(thiz != 0)
// {
// ((DetectorAgregator*)thiz)->tracker->stop();
// delete (DetectorAgregator*)thiz;
// }
// }
// catch(cv::Exception& e)
// {
// LOGD("nativeestroyObject caught 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());
// }
// catch (...)
// {
// LOGD("nativeDestroyObject caught unknown exception");
// jclass je = jenv->FindClass("java/lang/Exception");
// jenv->ThrowNew(je, "Unknown exception in JNI code of DetectionBasedTracker.nativeDestroyObject()");
// }
// LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject exit");
//}
//
//JNIEXPORT void JNICALL Java_demo_rayootech_com_cvcheck_DetectionBasedTracker_nativeStart
//(JNIEnv * jenv, jclass, jlong thiz)
//{
// LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStart");
//
// try
// {
// ((DetectorAgregator*)thiz)->tracker->run();
// }
// catch(cv::Exception& e)
// {
// LOGD("nativeStart caught 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());
// }
// catch (...)
// {
// LOGD("nativeStart caught unknown exception");
// jclass je = jenv->FindClass("java/lang/Exception");
// jenv->ThrowNew(je, "Unknown exception in JNI code of DetectionBasedTracker.nativeStart()");
// }
// LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStart exit");
//}
//
//JNIEXPORT void JNICALL Java_demo_rayootech_com_cvcheck_DetectionBasedTracker_nativeStop
//(JNIEnv * jenv, jclass, jlong thiz)
//{
// LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStop");
//
// try
// {
// ((DetectorAgregator*)thiz)->tracker->stop();
// }
// catch(cv::Exception& e)
// {
// LOGD("nativeStop caught 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());
// }
// catch (...)
// {
// LOGD("nativeStop caught unknown exception");
// jclass je = jenv->FindClass("java/lang/Exception");
// jenv->ThrowNew(je, "Unknown exception in JNI code of DetectionBasedTracker.nativeStop()");
// }
// LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStop exit");
//}
//
//JNIEXPORT void JNICALL Java_demo_rayootech_com_cvcheck_DetectionBasedTracker_nativeSetFaceSize
//(JNIEnv * jenv, jclass, jlong thiz, jint faceSize)
//{
// LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeSetFaceSize -- BEGIN");
//
// try
// {
// if (faceSize > 0)
// {
// ((DetectorAgregator*)thiz)->mainDetector->setMinObjectSize(Size(faceSize, faceSize));
// //((DetectorAgregator*)thiz)->trackingDetector->setMinObjectSize(Size(faceSize, faceSize));
// }
// }
// catch(cv::Exception& e)
// {
// LOGD("nativeStop caught 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());
// }
// catch (...)
// {
// LOGD("nativeSetFaceSize caught unknown exception");
// jclass je = jenv->FindClass("java/lang/Exception");
// jenv->ThrowNew(je, "Unknown exception in JNI code of DetectionBasedTracker.nativeSetFaceSize()");
// }
// LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeSetFaceSize -- END");
//}
//
//
//JNIEXPORT void JNICALL Java_demo_rayootech_com_cvcheck_DetectionBasedTracker_nativeDetect
//(JNIEnv * jenv, jclass, jlong thiz, jlong imageGray, jlong faces)
//{
// LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDetect");
//
// try
// {
// vector<Rect> RectFaces;
// ((DetectorAgregator*)thiz)->tracker->process(*((Mat*)imageGray));
// ((DetectorAgregator*)thiz)->tracker->getObjects(RectFaces);
// *((Mat*)faces) = Mat(RectFaces, true);
// }
// catch(cv::Exception& e)
// {
// LOGD("nativeCreateObject caught 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());
// }
// catch (...)
// {
// LOGD("nativeDetect caught unknown exception");
// jclass je = jenv->FindClass("java/lang/Exception");
// jenv->ThrowNew(je, "Unknown exception in JNI code DetectionBasedTracker.nativeDetect()");
// }
// LOGD("Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDetect END");
//}
//
//
//JNIEXPORT jintArray JNICALL Java_demo_rayootech_com_cvcheck_LibFuns_ImgToGray(
// JNIEnv* env, jobject obj, jintArray buf, int w, int h) {
//
// jint *cbuf;
// cbuf = env->GetIntArrayElements(buf, false);
//
// if (cbuf == NULL) {
// return 0; /* exception occurred */
// }
//
// int alpha = 0xFF << 24;
// for (int i = 0; i < h; i++) {
// for (int j = 0; j < w; j++) {
// // 获得像素的颜色
// int color = cbuf[w * i + j];
// int red = ((color & 0x00FF0000) >> 16);
// int green = ((color & 0x0000FF00) >> 8);
// int blue = color & 0x000000FF;
// color = (red + green + blue) / 3;
// color = alpha | (color << 16) | (color << 8) | color;
// cbuf[w * i + j] = color;
// }
// }
//
// int size=w * h;
//
// jintArray result = env->NewIntArray(size);
// env->SetIntArrayRegion(result, 0, size, cbuf);
// env->ReleaseIntArrayElements(buf, cbuf, 0);
// return result;
//}