//
|
// 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
|