m
suntianyu
2021-07-30 cc6f8a873c7efd28fbbeb7c1c70b28a053586f17
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
//
// Created by Scheaven on 2020/3/23.
//
 
#ifndef ARI_MANAGER_H
#define ARI_MANAGER_H
#include "std_target.h"
#include "config.h"
 
using namespace std;
 
class AriManager{
public:
    int cam_id; //指定待追踪摄像机编号
 
private:
    static void init_target(Target *t);
    void decode_detect(TResult *t_result, void *info, const int info_size);
 
public:
    AriManager();
    ~AriManager();
    void doInfer(const char* cam_name, const void *img, TResult *t_result, void *info, const int info_size); // 检测+追踪 接口(SDK封装)
};
 
#endif //INC_01_CPP_SORT_TRACKER_MANAGER_H