上一页 1 ··· 54 55 56 57 58 59 60 61 62 ··· 125 下一页
摘要: 官网下载地址https://opencv.org/releases/但是特别慢 快一些的就是git获取https://github.com/opencv/opencv/releases大概就4-5min https://pan.baidu.com/s/1iZhVhR4yWpxDuwynAefUOQ 阅读全文
posted @ 2023-11-20 14:38 txwtech 阅读(194) 评论(0) 推荐(0)
摘要: OpenCV解压后在\opencv\build\x64文件夹下可以看到几个文件夹 其对应关系为: vc10 = Visual Studio 2010 vc11 = Visual Studio 2012 vc12 = Visual Studio 2013 vc14 = Visual Studio 20 阅读全文
posted @ 2023-11-20 14:20 txwtech 阅读(471) 评论(0) 推荐(0)
摘要: c#统计字符个数LINQ private void CountCharTest() { string strTest = "11111abcaabb!@??d"; var query = from ch in strTest group ch by (int)ch into gr //分组条件以AS 阅读全文
posted @ 2023-11-15 10:35 txwtech 阅读(211) 评论(1) 推荐(0)
摘要: console.writeline c#中这个{0,3}输出格式 控制台的输出格式{0,3}的参数含义:0--是指第1个参数,是输出函数中的变量的值;3--是指占位宽度,>0是右对齐,<0是左对齐如此,{1,4}的含义就是,输出第2个参数,占位宽度为4位,右对齐 翻译 搜索 复制 阅读全文
posted @ 2023-11-15 10:32 txwtech 阅读(93) 评论(0) 推荐(0)
摘要: 因为文件共享不安全,所以你不能连接到文件共享。此共享需要过时的 SMB1 协议,而此协议是不安全的,可能会使你的系统遭受攻击. 安装SMB服务就可以了 翻译 搜索 复制 阅读全文
posted @ 2023-11-15 08:40 txwtech 阅读(319) 评论(0) 推荐(0)
摘要: linux发送与接收都转码utf-8: tcpClient ->write( send_msg.toUtf8());//解决乱码,发送转码 接收: QByteArray buffer = tcpClient->readAll(); if(!buffer.isEmpty()) { // ui->pla 阅读全文
posted @ 2023-11-14 11:34 txwtech 阅读(164) 评论(0) 推荐(0)
摘要: QT5 的TCP和UDP 网络通信 <QTcpSocket> 首先需要 在项目中引入网络模块,pro文件中添加 QT += core gui network #include <QTcpServer> #include <QTcpSocket> 翻译 搜索 复制 阅读全文
posted @ 2023-11-10 12:33 txwtech 阅读(138) 评论(0) 推荐(0)
摘要: void MainWindow::on_action_exit_triggered(){ QString aa = QString::fromLocal8Bit("退出"); QMessageBox::information(this,aa,QString::fromLocal8Bit("确认退出吗 阅读全文
posted @ 2023-11-09 15:27 txwtech 阅读(57) 评论(0) 推荐(0)
摘要: main.cpp里面修改 #include "mainwindow.h" #include <QApplication> #include <QScreen> #include <QDesktopWidget> int main(int argc, char *argv[]) { QApplicat 阅读全文
posted @ 2023-11-09 15:09 txwtech 阅读(144) 评论(0) 推荐(0)
摘要: 设备webservice服务没有开,主机关机,无响应导致的 可屏蔽机台,不扫描未启用的设备 翻译 搜索 复制 阅读全文
posted @ 2023-10-30 13:05 txwtech 阅读(116) 评论(0) 推荐(0)
上一页 1 ··· 54 55 56 57 58 59 60 61 62 ··· 125 下一页