上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 133 下一页
摘要: D:\QT_Project\qxormtest\user.cpp:10: warning: 'void qx::register_class(T&) [with T = qx::QxClass<user>]' redeclared without dllimport attribute: previ 阅读全文
posted @ 2024-08-22 09:10 txwtech 阅读(154) 评论(1) 推荐(0)
摘要: 1. ../ ../ //表示上一级路径 ../../ //表示上上级路径,以此类推 2. ./:点斜杠代表当前所在的目录。 ./ //表示当前所在的目录 3. / / //表示根目录 4. $$PWD $$PWD //项目的顶级目录, Qt pro添加dll文件方法 LIBS += -L[path 阅读全文
posted @ 2024-08-22 08:20 txwtech 阅读(469) 评论(1) 推荐(0)
摘要: 视觉检测平台开发 翻译 搜索 复制 阅读全文
posted @ 2024-08-19 13:30 txwtech 阅读(34) 评论(0) 推荐(0)
摘要: PaddleOCR完成自己的文字模型训练(二) 推理部署-Paddle inference进行OCR中文识别 paddlepaddle(二) 文字识别 PaddleOCR C++部署-摄像头取帧 C++部署百度飞桨PaddleOCR https://github.com/PaddlePaddle/P 阅读全文
posted @ 2024-08-17 08:50 txwtech 阅读(67) 评论(0) 推荐(0)
摘要: qt orm QxOrm数据库 使用方法介绍: https://blog.csdn.net/weixin_42887343/article/details/120664818 https://blog.csdn.net/godaa/article/details/124869562 https:// 阅读全文
posted @ 2024-08-15 22:52 txwtech 阅读(314) 评论(3) 推荐(0)
摘要: 若event不为null,则Invoke(),这是C#6的新语法。 ?.称为空值传播运算符。 //C# 5var handler = Event;if (handler != null){handler(source, e);}//C# 6var handler = Event;handler?.I 阅读全文
posted @ 2024-08-08 08:39 txwtech 阅读(280) 评论(0) 推荐(0)
摘要: openGauss数据库安装(基于openEuler-20.03-LTS-x86_64) 翻译 搜索 复制 阅读全文
posted @ 2024-08-06 08:28 txwtech 阅读(65) 评论(0) 推荐(0)
摘要: 五大国产实时操作系统RTOS: 1. 道系统(Delta OS):主要应用于军工装备领域,具有微秒级的响应时间和基于优先级抢占的实时任务调度策略。它已经在多兵种的装备上得到了广泛应用,并成为了东土科技防务业务的重要组成部分。 2. 翼辉(Sylix OS):一个功能全面、稳定可靠的实时操作系统平台, 阅读全文
posted @ 2024-08-06 08:15 txwtech 阅读(2943) 评论(0) 推荐(0)
摘要: 接口定义 一个简单的接口定义如下: interface I { // 'open' modifier is optional. func f(): Unit } 接口使用关键字 interface 声明,其后是接口的标识符 I 和接口的成员。接口成员可被 open 修饰符修饰,并且 open 修饰符 阅读全文
posted @ 2024-08-04 19:58 txwtech 阅读(92) 评论(0) 推荐(0)
摘要: import serialization.serialization.* import std.math.* import encoding.json.* /* 通过实现 Serializable 接口,来实现对自定义类型的序列化和反序列化功能 */ class Abc <: Serializabl 阅读全文
posted @ 2024-08-04 19:50 txwtech 阅读(43) 评论(0) 推荐(0)
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 133 下一页