添加OpenCv

This commit is contained in:
2025-09-15 22:28:43 +08:00
parent c0593df9e1
commit 94282fb1d9
423 changed files with 622349 additions and 97439 deletions

View File

@@ -14,10 +14,10 @@ typedef struct tsPageConfig // 8位数据类型
M_b01 isHide = false;
/** @brief 页面的宽度 */
M_u16 width = 647;
M_u16 width = 1024;
/** @brief 页面的高度 */
M_u16 height = 400;
M_u16 height = 576;
/** @brief 页面的左边 */
M_i16 left = 0;
@@ -26,6 +26,30 @@ typedef struct tsPageConfig // 8位数据类型
M_i16 right = 0;
}_tsPageConfig;
typedef struct tsServerAddr // 8位数据类型
{
/** @brief IP地址或域名 */
QString Host = "opc.tcp://zmj_plc:4840";
/** @brief 用户名 */
QString UserName = "ZMJ";
/** @brief 密码 */
QString Passwd = "Zmj@123...";
}_tsServerAddr;
typedef struct txAlarmText // 8位数据类型
{
/** @brief 文本颜色 */
QString TextColor = "";
/** @brief 故障内容 */
QString AlarmText = "";
/** @brief 排查方案 */
QString Troubleshoot = "";
}_txAlarmText;
/**************************** 共用体数据类型 ****************************/
#if CONFIG_EN_8BIT_UNION
/** @brief 8位数据类型 */
@@ -61,6 +85,8 @@ union uBit16
/** @brief 无符号整型16位 */
M_u16 u16=0;
};
#endif
#if CONFIG_EN_32BIT_UNION