You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
751 B
46 lines
751 B
/*
|
|
//定义整个系统基础的 定义 信息
|
|
*/
|
|
#ifndef Define_Base_H_
|
|
#define Define_Base_H_
|
|
#include <string>
|
|
#include <opencv2/opencv.hpp>
|
|
#include "CheckUtil.hpp"
|
|
#include "ImgCheckConfig.h"
|
|
#include "ImageDetConfig.h"
|
|
#include "Define_Error.h"
|
|
|
|
// 检测分析线程类数目
|
|
#define IMGCHECKANALYSISY_NUM 4
|
|
|
|
// 相机ID 的相关定义
|
|
enum Camera_IDX
|
|
{
|
|
Camera_IDX_0 = 0,
|
|
Camera_IDX_1 = 1,
|
|
};
|
|
static const std::string strCameraName[] =
|
|
{
|
|
"left",
|
|
"right"};
|
|
struct Camera_Info
|
|
{
|
|
Camera_IDX camera_ID;
|
|
std::string camera_name;
|
|
Camera_Info()
|
|
{
|
|
Init();
|
|
}
|
|
void Init()
|
|
{
|
|
camera_ID = Camera_IDX_0;
|
|
camera_name = strCameraName[camera_ID];
|
|
}
|
|
};
|
|
static const std::string WebConfig_CameraName[] =
|
|
{
|
|
"C1",
|
|
"C2",
|
|
"C3"};
|
|
|
|
#endif |