2019年5月3日

摘要: //timer.h #ifndef W_TIMER_H #define W_TIMER_H #include #include #include class Timer { public: Timer():_name("Time elapsed:") { restart(); } explicit Timer(const std::s... 阅读全文
posted @ 2019-05-03 22:40 s010101 阅读(1814) 评论(0) 推荐(0) 编辑

2017年8月22日

摘要: #ifndef FBC_CV_RESIZE_HPP_ #define FBC_CV_RESIZE_HPP_ /* reference: imgproc/include/opencv2/imgproc.hpp imgproc/src/imgwarp.cpp */ #include "core/mat.hpp" #include "core/base.hpp" #i... 阅读全文
posted @ 2017-08-22 22:35 s010101 阅读(390) 评论(0) 推荐(0) 编辑

2017年7月31日

摘要: 1. 删除远程仓储(仅在需要修改到一个新的远程的情况下) git remote rm origin 2.建立git仓库 ,cd到你的本地项目根目录下,执行git命令 git init 3.将项目的所有文件添加到仓库中 git commit -m "注释语句" 4.去github上创建一个自己的Rep 阅读全文
posted @ 2017-07-31 22:38 s010101 阅读(206) 评论(0) 推荐(0) 编辑

2017年7月26日

摘要: 解决方法,把 adb.exe fastboot.exe AdbWinApi.dll AdbWinUsbApi.dll粘贴到C:\Windows\SysWOW64目录下 重新adb即可 解决方法,把 adb.exe fastboot.exe AdbWinApi.dll AdbWinUsbApi.dll 阅读全文
posted @ 2017-07-26 23:23 s010101 阅读(527) 评论(0) 推荐(0) 编辑

2017年7月23日

摘要: 一、前言-简介 在试验中需要常常将实验结果进行保存,在opencv中提供很好用的录制视频的句柄,也可称之为类-videowriter。 videowriter应用那是相当的简单,总之分为三步: //声明 VideoWriter writer; //打开 writer.open("C:\\Users\ 阅读全文
posted @ 2017-07-23 14:13 s010101 阅读(547) 评论(0) 推荐(0) 编辑

2017年4月29日

摘要: #include #include #include int main() { using namespace std; string filename; cout > filename; //type 1 //ofstream fout(filename.c_str()); //type 2 ofstream... 阅读全文
posted @ 2017-04-29 19:11 s010101 阅读(157) 评论(0) 推荐(0) 编辑

2017年4月17日

摘要: MIPI Mobile Industry Processor Interface(移动产业处理器接口) pl = sippCreatePipeline(1, 3, SIPP_MBIN(mbinSippImg)); SIPP_MBIN(mbinSippImg)用于指向mbin(Myriad Binar 阅读全文
posted @ 2017-04-17 23:23 s010101 阅读(193) 评论(0) 推荐(0) 编辑

2017年4月2日

摘要: // 多线程.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include #include using namespace std; HANDLE hMutex; DWORD WINAPI Fun(LPVOID lpParamter) { while... 阅读全文
posted @ 2017-04-02 00:50 s010101 阅读(123) 评论(0) 推荐(0) 编辑

2017年4月1日

摘要: 共有两种库:一种是LIB包含了函数所在的DLL文件和文件中函数位置的信息(入口),代码由运行时加载在进程空间中的DLL提供,称为动态链接库dynamic link library。一种是LIB包含函数代码本身,在编译时直接将代码加入程序当中,称为静态链接库static link library。共有 阅读全文
posted @ 2017-04-01 20:51 s010101 阅读(246) 评论(0) 推荐(0) 编辑

2017年1月12日

摘要: .C_STR() : C++中使用string类表示字符串,string类的c_str方法可以返回用C语言的char *的形式表示的字符串. vector: 在c++中,vector是一个十分有用的容器,下面对这个容器做一下总结。 1 基本操作 (1)头文件#include<vector>. (2) 阅读全文
posted @ 2017-01-12 14:16 s010101 阅读(130) 评论(0) 推荐(0) 编辑

导航