摘要: openCV编译安装-MSCV-Windows10-Qt 1、准备工作 CMake:下载最新版本即可 openCV:下载任意版本,可以下载源码或者官方编译好的VS版(其中也带有源码),我下载的是opencv-4.5.2-vc14_vc15.exe Visual Studio:这里使用的是2017 Q 阅读全文
posted @ 2021-06-10 00:13 mahuifa 阅读(476) 评论(0) 推荐(0)
摘要: openCV编译安装-MSCV-Windows10-Qt💛 文章目录 openCV编译安装-MSCV-Windows10-Qt💛@[toc]1、准备工作 💢2、解压👍3、Cmake编译🐹4、添加环境变量 🎎5、使用🙌 更多精彩内容👉个人内容分类汇总 👈 1、准备工作 💢 CMak 阅读全文
posted @ 2021-06-10 00:04 mahuifa 阅读(0) 评论(0) 推荐(0)
摘要: Qt一键部署配置(Qt程序打包) 1、版本 系统版本:windows10 Qt版本:5.15.2 2、设置可执行程序输出路径 打开.pro文件,输入DESTDIR = $$PWD/../bin,这行代码意思是在编译后将可执行程序放在../bin路径中。 3、配置步骤 3.1 新建一个Qt工程(此处不 阅读全文
posted @ 2021-06-02 23:08 mahuifa 阅读(1950) 评论(0) 推荐(0)
摘要: Qt一键部署配置(Qt程序打包)👎 👌 👊 👊 ✊ ✌️ 👋 文章目录 Qt一键部署配置(Qt程序打包)👎 👌 👊 👊 ✊ ✌️ 👋@[toc]1、版本 ❓2、设置可执行程序输出路径🎵3、配置步骤 🐴4、取消每次运行都部署🙉4.1 方法一👀4.2 方法二 👂 更多精彩内 阅读全文
posted @ 2021-06-02 23:01 mahuifa 阅读(0) 评论(0) 推荐(0)
摘要: C++基础 文章目录 C++基础@[toc]1、取余2、变量1字符串 3、常量1 定义常量的方法 4、sizeof 关键字5、实型6、程序流程结构7、运算符8、数组9、函数1 常见函数样式有4种2 函数的分文件编写3 函数默认参数4 函数占位参数 10、指针1 空指针2 野指针3 const 修饰指 阅读全文
posted @ 2021-03-27 22:28 mahuifa 阅读(0) 评论(0) 推荐(0)
摘要: 多Excel文件内容查询工具。 告别繁琐重复的体力劳动,一分钟干完一天的活。🙉 码云 github 下载 当需要在多个Excel表格中查询需要的信息是,一个文件一个文件的去查询非常麻烦。 虽然有其他方法可以实现在多个Excel表格中查询目标信息,但使用起来不是很方便,对小白也不是很友好。 受够了C 阅读全文
posted @ 2021-02-27 22:26 mahuifa 阅读(1602) 评论(0) 推荐(0)
摘要: Server #include <stdio.h> #include <Ws2tcpip.h> #include <winsock2.h> #pragma comment(lib,"ws2_32.lib") ​ #define PORT 6060 #define IP "ff02::2" #defi 阅读全文
posted @ 2020-12-24 22:21 mahuifa 阅读(760) 评论(0) 推荐(0)
摘要: Server #include <stdio.h> #include <Ws2tcpip.h> #include <winsock2.h> #define HELLO_PORT 7905 #define HELLO_GROUP "224.0.0.1" #pragma comment(lib,"ws2 阅读全文
posted @ 2020-12-24 22:19 mahuifa 阅读(682) 评论(0) 推荐(0)
摘要: Cilect #include <stdio.h> #include <Ws2tcpip.h> #include <winsock2.h> #define HELLO_PORT 7905 #define HELLO_GROUP "224.0.0.1" #pragma comment(lib,"ws2 阅读全文
posted @ 2020-12-24 22:16 mahuifa 阅读(298) 评论(0) 推荐(0)
摘要: Server #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <string.h> #include <arpa/inet.h> int main() { //创建套接字 int fd = socket(AF_I 阅读全文
posted @ 2020-12-24 22:14 mahuifa 阅读(1025) 评论(0) 推荐(0)