摘要:
//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... 阅读全文
摘要:
#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... 阅读全文
摘要:
1. 删除远程仓储(仅在需要修改到一个新的远程的情况下) git remote rm origin 2.建立git仓库 ,cd到你的本地项目根目录下,执行git命令 git init 3.将项目的所有文件添加到仓库中 git commit -m "注释语句" 4.去github上创建一个自己的Rep 阅读全文
摘要:
解决方法,把 adb.exe fastboot.exe AdbWinApi.dll AdbWinUsbApi.dll粘贴到C:\Windows\SysWOW64目录下 重新adb即可 解决方法,把 adb.exe fastboot.exe AdbWinApi.dll AdbWinUsbApi.dll 阅读全文
摘要:
一、前言-简介 在试验中需要常常将实验结果进行保存,在opencv中提供很好用的录制视频的句柄,也可称之为类-videowriter。 videowriter应用那是相当的简单,总之分为三步: //声明 VideoWriter writer; //打开 writer.open("C:\\Users\ 阅读全文
摘要:
#include #include #include int main() { using namespace std; string filename; cout > filename; //type 1 //ofstream fout(filename.c_str()); //type 2 ofstream... 阅读全文
摘要:
MIPI Mobile Industry Processor Interface(移动产业处理器接口) pl = sippCreatePipeline(1, 3, SIPP_MBIN(mbinSippImg)); SIPP_MBIN(mbinSippImg)用于指向mbin(Myriad Binar 阅读全文
摘要:
// 多线程.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... 阅读全文
摘要:
共有两种库:一种是LIB包含了函数所在的DLL文件和文件中函数位置的信息(入口),代码由运行时加载在进程空间中的DLL提供,称为动态链接库dynamic link library。一种是LIB包含函数代码本身,在编译时直接将代码加入程序当中,称为静态链接库static link library。共有 阅读全文