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
//
// Created by Scheaven on 2020/4/27.
//
 
#ifndef INC_01_CPP_SORT_CONFIG_UTIL_H
#define INC_01_CPP_SORT_CONFIG_UTIL_H
#include "../config.h"
#include <string>
 
typedef struct m_staticStruct{
    static std::string cfg_path;
    static std::string weights_path;
    static std::string tracher_model;
    static std::string coco_path;
    static int max_cam_num;
}M_STATICSTRUCT, *P_STATICSTRUCT;
 
#endif //INC_01_CPP_SORT_CONFIG_UTIL_H