/* * @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_PIN_PoSun, // PIN破损 AI_CLass_QX_NAME_PIN_QueShi, // PIN缺失 AI_CLass_QX_NAME_BTB_DuanLie, // BTB断裂 AI_CLass_QX_NAME_LianXi, // 连锡 AI_CLass_QX_NAME_QueXi, // 缺锡 AI_CLass_QX_NAME_YiWu, // 异物 AI_CLass_QX_NAME_C_BianXing, // C型卡口异常 AI_CLass_QX_NAME_other, // 其他 AI_CLass_QX_NAME_count, }; // 缺陷项对应在参数中的名称 static const std::string AI_CLass_QX_NAME_Names[] = { "PIN_PoSun", "PIN_QueShi", "BTB_DuanLie", "LianXi", "QueXi", "YiWu", "C_BianXing", "other", }; #endif