Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/samples/android/face-detection/jni/DetectionBasedTracker_jni.h
16349 views
1
/* DO NOT EDIT THIS FILE - it is machine generated */
2
#include <jni.h>
3
/* Header for class org_opencv_samples_fd_DetectionBasedTracker */
4
5
#ifndef _Included_org_opencv_samples_fd_DetectionBasedTracker
6
#define _Included_org_opencv_samples_fd_DetectionBasedTracker
7
#ifdef __cplusplus
8
extern "C" {
9
#endif
10
/*
11
* Class: org_opencv_samples_fd_DetectionBasedTracker
12
* Method: nativeCreateObject
13
* Signature: (Ljava/lang/String;F)J
14
*/
15
JNIEXPORT jlong JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeCreateObject
16
(JNIEnv *, jclass, jstring, jint);
17
18
/*
19
* Class: org_opencv_samples_fd_DetectionBasedTracker
20
* Method: nativeDestroyObject
21
* Signature: (J)V
22
*/
23
JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDestroyObject
24
(JNIEnv *, jclass, jlong);
25
26
/*
27
* Class: org_opencv_samples_fd_DetectionBasedTracker
28
* Method: nativeStart
29
* Signature: (J)V
30
*/
31
JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStart
32
(JNIEnv *, jclass, jlong);
33
34
/*
35
* Class: org_opencv_samples_fd_DetectionBasedTracker
36
* Method: nativeStop
37
* Signature: (J)V
38
*/
39
JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeStop
40
(JNIEnv *, jclass, jlong);
41
42
/*
43
* Class: org_opencv_samples_fd_DetectionBasedTracker
44
* Method: nativeSetFaceSize
45
* Signature: (JI)V
46
*/
47
JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeSetFaceSize
48
(JNIEnv *, jclass, jlong, jint);
49
50
/*
51
* Class: org_opencv_samples_fd_DetectionBasedTracker
52
* Method: nativeDetect
53
* Signature: (JJJ)V
54
*/
55
JNIEXPORT void JNICALL Java_org_opencv_samples_facedetect_DetectionBasedTracker_nativeDetect
56
(JNIEnv *, jclass, jlong, jlong, jlong);
57
58
#ifdef __cplusplus
59
}
60
#endif
61
#endif
62
63