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.
43 lines
1.2 KiB
43 lines
1.2 KiB
/*
|
|
* @Author: your name
|
|
* @Date: 2022-04-20 15:49:50
|
|
* @LastEditTime: 2025-09-17 19:09:40
|
|
* @LastEditors: xiewenji 527774126@qq.com
|
|
* @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
|
|
* @FilePath: /ZCXD_MonitorPlatform/src/CoreLogicModule/include/CamDeal.h
|
|
*/
|
|
#ifndef AICommonDefine_H_
|
|
#define AICommonDefine_H_
|
|
|
|
// AI缺陷分类缺陷的种类
|
|
enum AI_CLass_QX_NAME_
|
|
{
|
|
|
|
AI_CLass_QX_NAME_aotudian, // 凹凸点
|
|
AI_CLass_QX_NAME_other, // 其他
|
|
AI_CLass_QX_NAME_line, // 线状
|
|
AI_CLass_QX_NAME_zangwu, // 脏污
|
|
AI_CLass_QX_NAME_dianzhuang, // 点状
|
|
AI_CLass_QX_NAME_posun, // 破损
|
|
AI_CLass_QX_NAME_xianwei, // 纤维
|
|
AI_CLass_QX_NAME_shuizi, // 水渍
|
|
AI_CLass_QX_NAME_danban, // 淡斑
|
|
AI_CLass_QX_NAME_fuchen, // 浮尘
|
|
AI_CLass_QX_NAME_count,
|
|
};
|
|
// 缺陷项对应在参数中的名称
|
|
static const std::string AI_CLass_QX_NAME_Names[] =
|
|
{
|
|
"aotudian",
|
|
"qx",
|
|
"line",
|
|
"zangwu",
|
|
"dianzhuang",
|
|
"posun",
|
|
"xianwei",
|
|
"shuizi",
|
|
"danban",
|
|
"fuchen",
|
|
};
|
|
|
|
#endif |