/* * @Author: your name * @Date: 2022-04-20 15:49:50 * @LastEditTime: 2022-09-23 21:51:58 * @LastEditors: sueRimn * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE * @FilePath: /ZCXD_MonitorPlatform/src/CoreLogicModule/include/CamDeal.h */ #ifndef OtherDetBaseDefine_H_ #define OtherDetBaseDefine_H_ #include #include #include "CheckErrorCodeDefine.hpp" #include "AIImgDeal.h" #include "BlobBase.h" using namespace std; struct OtherDet_Config { int nDeviceId; // GPU 号 int nUserValue; int nShowImg_Width; int nShowImg_Height; AI_IMG_deal *pAIDeal; CHECK_TEM_RESULT *pTemCheck; OtherDet_Config() { pAIDeal = NULL; pTemCheck = NULL; nDeviceId = 0; nUserValue = 0; nShowImg_Width = 100; nShowImg_Height = 100; } }; #endif