1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| //
| // Created by Scheaven on 2020/4/26.
| //
|
| #ifndef H_INTERFACE_H
| #define H_INTERFACE_H
|
| #ifdef __cplusplus
| extern "C"{
| #endif
|
| #define YOLOTRACK_API extern "C" __attribute__((visibility ("default")))
|
| YOLOTRACK_API void* create(const char *conf, int *max_chan);
| YOLOTRACK_API void release(void* handle);
| YOLOTRACK_API void* get_result(void *handle, const void *img, const int chan);
| YOLOTRACK_API void release_result(void *res);
|
| #ifdef __cplusplus
| }
| #endif
| #endif //INC_01_CPP_SORT_HUMAN_INTERFACE_H
|
|