上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 20 下一页
摘要: fread和fwrite之后,相应的读写指针都会自动的往后移动。 阅读全文
posted @ 2019-10-19 14:08 cumtchw 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 原博客搬移到:https://blog.csdn.net/u013171226/article/details/107680414 extern "C"的主要作用就是为了能够正确实现C++代码调用其他C语言代码。加上extern "C"后,会指示编译器这部分代码按C语言(而不是C++)的方式进行编译 阅读全文
posted @ 2019-10-17 17:32 cumtchw 阅读(626) 评论(0) 推荐(0) 编辑
摘要: string faceStr; faceStr = base64_decode(faceImage); //faceImage是base64格式的jpg图片, std::vector<unsigned char> faceVec(faceStr.begin(), faceStr.end()); cv 阅读全文
posted @ 2019-10-16 17:17 cumtchw 阅读(449) 评论(0) 推荐(0) 编辑
摘要: 原博客搬移到:https://blog.csdn.net/u013171226/article/details/107680412 阅读全文
posted @ 2019-10-16 17:14 cumtchw 阅读(170) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/xuanyuyt/p/7222867.html#_label4 阅读全文
posted @ 2019-09-25 19:09 cumtchw 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 下面是我整理的常用 Git 命令清单。几个专用名词的译名如下: Workspace:工作区 Index / Stage:暂存区 Repository:仓库区(或本地仓库) Remote:远程仓库一、新建代码库# 在当前目录新建一个Git代码库 git init# 新建一个目录,将其初始化为Git代码 阅读全文
posted @ 2019-09-24 11:02 cumtchw 阅读(103) 评论(0) 推荐(0) 编辑
摘要: https://ethereon.github.io/netscope/#/editor 阅读全文
posted @ 2019-09-24 09:57 cumtchw 阅读(942) 评论(0) 推荐(0) 编辑
摘要: 三种模式:命令模式(esc),编辑模式(i a o ),末行模式(:) i在光标前面插入,a在光标后面插入,o在当前行的下面插入新的一行。 光标移动: hjkl 方向键,h:向左,l:向右,j:向下,k:向上, ngg 调到n行的行首 G调到文件的结尾 0(数字零)光标移动到当前行行首 $光标移动到 阅读全文
posted @ 2019-09-06 22:26 cumtchw 阅读(316) 评论(0) 推荐(0) 编辑
摘要: cv::Mat bgr(stSdcYuvData.frame.height, stSdcYuvData.frame.width, CV_8UC3); cv::Mat faceBgr = bgr(cv::Rect(0, 0, 500, 500));// Rect(x,y,width,height) 阅读全文
posted @ 2019-08-27 09:53 cumtchw 阅读(265) 评论(0) 推荐(0) 编辑
摘要: std::string str; std::vector<unsigned char> buff; cv::imencode(".jpg", requestFace, buff); str.resize(buff.size()); memcpy(&str[0], buff.data(), buff. 阅读全文
posted @ 2019-08-26 20:18 cumtchw 阅读(1316) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14 15 16 17 18 ··· 20 下一页