摘要: 1. 基于openwrt平台开发路由器功能; 2. 维护现有产品和修改客户反馈的问题; 3.参与新产品的设计和功能开发; 主要绩效: 1. 分析xfrpc实现原理及其代码,解决物理连接切换后,frpc无法实时感知的造成内外网中断的问题; 2. 分析coova chilli实现原理及其代码,解决路由器 阅读全文
posted @ 2026-02-25 16:15 fire909090 阅读(6) 评论(0) 推荐(0)
摘要: Windows main branch, 3.05 and later Using Tesseract !!! IMPORTANT !!! To use Tesseract in your application (to include tess or to link it into your ap 阅读全文
posted @ 2024-02-22 00:57 fire909090 阅读(206) 评论(0) 推荐(0)
摘要: D:\aca_test_qt\aca_test_qu\include\pylon\Platform.h:126: error: #error Unsupported platformIn file included from ..\aca_test_qu\include/pylon/PylonInc 阅读全文
posted @ 2024-02-06 01:13 fire909090 阅读(166) 评论(1) 推荐(0)
摘要: 反反复 阅读全文
posted @ 2024-02-03 17:59 fire909090 阅读(14) 评论(0) 推荐(0)
摘要: void customMessageHandler(QtMsgType type, const QMessageLogContext &context, const QString &msg) { Q_UNUSED(context); QString dt = QDateTime::currentD 阅读全文
posted @ 2024-02-03 17:58 fire909090 阅读(27) 评论(0) 推荐(0)
摘要: Getting the source code First, cd into the directory where you want the "qt5" directory to live. Then, clone the top-level Qt 5 git repository: $ git 阅读全文
posted @ 2024-02-03 13:39 fire909090 阅读(88) 评论(0) 推荐(0)
摘要: 套接字异常处理 网络环境中,我们的客户端和服务端可能会因为各种各样不可预测的网络环境而导致程序出现各式各样的错误,比如网线被拔了,服务器防火墙阻挡。又或者是套接字的属性设置错误,服务器/客户端套接字的初始化失败;这些都将会使我们的程序出现各种各样的异常;所以需要我们对程序的异常进行捕获,提高整个程序 阅读全文
posted @ 2024-02-02 18:45 fire909090 阅读(210) 评论(0) 推荐(0)
摘要: def test_open_device(self): cam = pylon.InstantCamera() self.assertFalse(cam.IsOpen()) cam = self.create_first() cam.Open() self.assertTrue(cam.IsOpen 阅读全文
posted @ 2024-01-10 21:29 fire909090 阅读(47) 评论(0) 推荐(0)
摘要: d4c4256a8f46173b675dd6a62d12f566ed3487f932bab6bb7058f06c124bcc27 anaconda.sh https://juejin.cn/post/7022146368269451300 阅读全文
posted @ 2024-01-09 13:53 fire909090 阅读(21) 评论(0) 推荐(0)
摘要: conda 环境相关命令 创建环境 shell 复制代码 conda create -n env_name python=3.7 --clone another_env -n:name 表示新环境名称 python:使用python版本 --clone:从现有环境复制而来 删除环境 shell 复制 阅读全文
posted @ 2024-01-09 10:47 fire909090 阅读(132) 评论(0) 推荐(0)