basic版本的yolo,在yolov3版本上增加人体跟踪
xuepengqiang
2020-05-26 5966f2b095841627d62daac0159e81f83544b85c
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
//
// 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 release(void* handle)
{
    manager_release(handle);
}
 
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);
};