/* * @Author: your name * @Date: 2022-04-20 15:49:50 * @LastEditTime: 2025-09-17 18:57:39 * @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 OtherDetBaseDefine_H_ #define OtherDetBaseDefine_H_ #include #include #include "CheckErrorCodeDefine.hpp" #include "BlobBase.h" using namespace std; struct OtherDet_Config { int nDeviceId; // GPU 号 int nUserValue; int nShowImg_Width; int nShowImg_Height; OtherDet_Config() { nDeviceId = 0; nUserValue = 0; nShowImg_Width = 100; nShowImg_Height = 100; } }; #endif