摘要: A C++ thread object generally (but not always) represents a thread of execution, which is an OS or platform concept. When thread::join() is called, th 阅读全文
posted @ 2020-09-22 01:31 千寻slimg 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 串口发送hex命令为char型的十六进制命令,并用到了CRC16校验,分别取校验结果数据的高低位 10进制int型数据转16进制,并取高低位: 1 #include<iostream> 2 #include<string> 3 using namespace std; 4 5 #define TAB 阅读全文
posted @ 2020-09-15 19:59 千寻slimg 阅读(360) 评论(0) 推荐(0) 编辑
摘要: b站大佬Jomoe工 代码 视频链接https://www.bilibili.com/video/BV1EE4117728?p=3 存储学习 阅读全文
posted @ 2020-09-13 01:01 千寻slimg 阅读(351) 评论(0) 推荐(0) 编辑
摘要: 可能原因,自己手贱删除了/etc/apt/sources.list.d中的fcitx的一个列表 解决方法: 配置当前输入发,将搜狗输入法下移放在第二个位置(MDZZ) 阅读全文
posted @ 2020-08-13 17:13 千寻slimg 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 设置VMware编辑-->首选项-->设备-->启用虚拟打印机 即可 阅读全文
posted @ 2020-08-09 23:24 千寻slimg 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 转载至 https://developer.51cto.com/art/201906/597961.htm 从字面意义上讲,有人可能会认为 TCP/IP 是指 TCP 和 IP 两种协议。实际生活当中有时也确实就是指这两种协议。然而在很多情况下,它只是利用 IP 进行通信时所必须用到的协议群的统称。 阅读全文
posted @ 2020-07-30 12:57 千寻slimg 阅读(248) 评论(0) 推荐(0) 编辑
摘要: np使用创建图像def creat_image(): image = np.zeros([400, 400, 3], np.uint8) //三通道 image[:, :, 2] = np.ones([400, 400])*255 cv.imshow('creat image', image ) 霍 阅读全文
posted @ 2020-07-09 22:53 千寻slimg 阅读(299) 评论(0) 推荐(0) 编辑