派生自 Algorithm/baseDetector

bug
Scheaven
2021-06-17 0126e953b3f293b111179e4777103c64f778870c
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
//
// Created by Scheaven on 2020/4/26.
//
 
#include "h_interface.h"
#include "./lib/human_interface.h"
 
// 创建
YOLOTRACK_API void* create(const char *conf, int *max_chan)
{
    return manager_create(conf, max_chan);
}
 
// 原查找结果接口
YOLOTRACK_API void* get_result(void *handle, const void *img, const int chan)
{
    return frame_result(handle, img, chan);
}
 
 
YOLOTRACK_API void release_result(void *res)
{
    manager_result(res);
};
 
YOLOTRACK_API void release(void* handle)
{
    manager_release(handle);
}