12 2015 档案
摘要:Project --> Option --> Packages -->Runtime Packages --> Link with runtime packages 属性改为falseProject --> Option --> C++Linker --> Link with Dynamic RTL...
阅读全文
摘要:TinyXML是一个开源的解析XML的解析库,能够用于C++,能够在Windows或Linux中编译,使用TinyXML进行C++ XML解析,使用简单,容易上手。这个解析库的模型通过解析XML文件,然后在内存中生成DOM模型,从而让我们很方便的遍历这棵XML树。TinyXML版本:tinyxm...
阅读全文
摘要:#include "stdio.h"#include "string.h"#include "iostream"#include "opencv/cv.h"#include "opencv/cxcore.h"#include "opencv/cvaux.h"#include "opencv/high...
阅读全文
摘要:#include "stdio.h"#include "string.h"#include "iostream"#include "opencv/cv.h"#include "opencv/cxcore.h"#include "opencv/cvaux.h"#include "opencv/high...
阅读全文
摘要:TTabControl包含一列字符串标签的tabs每个标签控制一个对象首先创建一个TForm;接下来添加TTabControl组件和一个文件对话框TOpenDialog(用于添加文件),然后在TTabControl里面添加TMemo(多行文本编辑框),最后在Form上添加一个Button,在Butt...
阅读全文
摘要:ShowMessage一个简单的消息提示:例如:ShowMessage("xxxx");MessageDlg(constAnsiString Msg, TMsgDlgType DlgType, TMsgDlgButtons Buttons,int HelpCtx);Msg: 显示消息的内容DlgTy...
阅读全文
摘要:TPageControl的功能是创建多个Dialog页,而这些重叠的每一个页Dialog就是通过TTabSheet对象实现的
阅读全文
摘要:__fastcall TForm1::TForm1(TComponent* Owner) : TForm(Owner){ //加载图标到Imagelist Graphics::TBitmap *bmpPicture = NULL; bmpPicture = new Graph...
阅读全文
摘要:首先在C#工程下面安装第三方插件包 安装方法:Tools --> Library Package Manager --> Package Manager Console Install-Package UnmanagedExports 并添加:using System.Runtime.I...
阅读全文
摘要:并发在单核和多核都可存在,就是同一时间有多个可以执行的进程。但是在单核中同一时刻只有一个进程获得CPU,虽然宏观上你认为多个进程都在进行。并行是指同一时间多个进程在微观上都在真正的执行,这就只有在多核的情况下了。
阅读全文
摘要:注意:opencv-2.4.10#include "stdio.h"#include "string.h"#include "iostream"#include "opencv/cv.h"#include "opencv/cxcore.h"#include "opencv/highgui.h"#in...
阅读全文
摘要:1.TOpenDialog:Title属性:用于获取或设置对话框标题,如果么偶有给该属性赋值,则系统将使用默认值标题:“打开” 。InitialDir属性:用于获取或设置文件对话框显示的初始目录。如果没有设置或设置的目录不存在,该属性值为当前工作目录。Files属性:用于获取或设置当前文件名筛选器字
阅读全文
摘要:DLL动态链接库的生成:首先打开VS2012,新建——项目——Win32控制台应用程序(项目名称:ConsoleApplication1)——空项目新建一个源文件source.cpp先用控制台exe配置类型自己定义函数,并通过主函数调试然后可以通过项目——属性——配置属性——常规——项目默认值——配...
阅读全文
摘要:Mat img;int color[111111];int main(){ VideoCapture video(0); if (!video.isOpened()) { return -1; } Mat img; Mat img1, img2, i...
阅读全文
摘要:#include "cv.h"#include "highgui.h"#include using namespace std;using namespace cv;int main(int argc, char* argv[]){ Mat src = imread("misaka.j...
阅读全文
摘要:一.进程(Process)是计算机中的程序关于某数据集合上的一次运行活动,是系统进行资源分配和调度的基本单位,是操作系统结构的基础C++监听进程状态:首先加载#include "tlhelp32.h"头文件主要函数:CreateToolhelp32Snapshot( DWORD d...
阅读全文
摘要:服务器程序:(以C++Builder为例)void __fastcall ServerThread::Execute(){ wchar_t *pipeName = L"\\\\.\\pipe\\testpipe"; pipe_handle = CreateNamedPipe(pipeNa...
阅读全文
摘要:1、界面窗口如何不显示标题栏? 在Form属性栏里面把BorderStyle的值设为None2.wchar_twchar_t是C/C++的字符类型,是一种扩展的存储方式,wchar_t类型主要用在国际化程序的实现中定义方式:wchar_t *str = "Hello World!!";3.C++如...
阅读全文
摘要:void SkinRGB(IplImage* rgb, IplImage* _dst){ assert(rgb->nChannels == 3 && _dst->nChannels == 3); static const int R = 2; static const int G ...
阅读全文
摘要:Mat input_image;Mat output_mask;Mat output_image;void main(){ VideoCapture cam(0); if (!cam.isOpened()) return; namedWindow("input ima...
阅读全文
摘要:HSV皮肤检测// 进行肤色检测 void SkinDetect(IplImage* src, IplImage* dst){ // 创建图像头 IplImage* hsv = cvCreateImage(cvGetSize(src), IPL_DEPTH_8U, 3);//用...
阅读全文