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.
36 lines
803 B
36 lines
803 B
/*
|
|
* @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 <string>
|
|
#include <iostream>
|
|
#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 |