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.

48 lines
896 B

/*
* @Descripttion:
* @version:
* @Author: sueRimn
* @Date: 2022-03-16 17:09:11
* @LastEditors: sueRimn
* @LastEditTime: 2022-09-23 17:43:15
*/
#ifndef _CheckDefine_HPP_
#define _CheckDefine_HPP_
#include <opencv2/opencv.hpp>
#define SRC_IMAGE_WIDTH 14192
#define SRC_IMAGE_HEIGHT 10640
#define SRC_IMAGE_SIZE 1*SRC_IMAGE_WIDTH *SRC_IMAGE_HEIGHT
#define AI_BATCH_SIZE 1
enum ERRORDEFINE
{
RESULT_OK,
ERROR_CHECK_IMG_NULL, // 检测图片为空
ERROR_CHECK_RESOURCE_NULL, // 检测资源为空
ERROR_PRECHECK_IMG_NULL, // 预检测图片 异常
};
// 检测控制参数
struct CheckControlConfigSt
{
CheckControlConfigSt()
{
}
};
// 系统运行控制参数
struct SystmeControlConfigST
{
CheckControlConfigSt checkControlConfig; //// 检测控制参数
SystmeControlConfigST()
{
}
};
#endif //_CORELOGICFACTORY_HPP_