Lost !

-----hard working for the furture.

导航

统计

文章分类 -  C++

上一页 1 2 3 4 5 6 下一页

普通字符和宽字符
摘要:普通字符: char * A="abcd"; 宽字符: char * B=L"abcd"; A,B字符长度一致,但是宽字符占用内存长度比普通字符大一倍; tchar.h用来解决unicode字符集和多字节字符集问题,即宽字符和普通字符集: 阅读全文

posted @ 2017-10-16 16:41 失落''80 阅读(241) 评论(0) 推荐(0) 编辑

Smith 史密斯圆图与阻抗匹配
摘要:https://www.maximintegrated.com/cn/app-notes/index.mvp/id/742 阅读全文

posted @ 2017-10-06 08:49 失落''80 阅读(184) 评论(0) 推荐(0) 编辑

第一个C的绘图程序-基于easyx图形库
摘要:注意:VS2010中要设置成多字节编码才能编译通过. 阅读全文

posted @ 2017-09-29 23:30 失落''80 阅读(1047) 评论(0) 推荐(0) 编辑

vulkan 图形开发库
摘要:https://vulkan.lunarg.com/sdk/home#windows 阅读全文

posted @ 2017-09-16 11:01 失落''80 阅读(283) 评论(0) 推荐(0) 编辑

opengl 学习
摘要:https://learnopengl-cn.github.io http://blog.csdn.net/qq_19003345/article/details/76098781 阅读全文

posted @ 2017-09-16 08:59 失落''80 阅读(51) 评论(0) 推荐(0) 编辑

mac opencv 安装
摘要:cmake: http://blog.csdn.net/feixiaku/article/details/51754663 source: http://docs.opencv.org/2.4/doc/tutorials/introduction/linux_install/linux_instal 阅读全文

posted @ 2017-08-20 10:36 失落''80 阅读(55) 评论(0) 推荐(0) 编辑

opencv .net demo
摘要:OpenCV.Net.Capture cap; public Form1() { InitializeComponent(); while (true) { cap = OpenCV.Net.Capture.CreateCameraCapture(0); ... 阅读全文

posted @ 2017-07-27 21:39 失落''80 阅读(315) 评论(0) 推荐(0) 编辑

vc++ api msdn
摘要:https://msdn.microsoft.com/zh-cn/library/60k1461a.aspx 阅读全文

posted @ 2017-07-27 08:32 失落''80 阅读(69) 评论(0) 推荐(0) 编辑

UI多线程
摘要:https://msdn.microsoft.com/zh-cn/library/ms810439.aspx 阅读全文

posted @ 2017-07-27 08:27 失落''80 阅读(67) 评论(0) 推荐(0) 编辑

labview cvi 编程
摘要:http://blog.sina.com.cn/s/blog_4395f9980101fnbl.html 阅读全文

posted @ 2017-07-20 16:54 失落''80 阅读(202) 评论(0) 推荐(0) 编辑

MFC 控件
摘要:http://www.codejock.com/ 阅读全文

posted @ 2017-07-18 17:42 失落''80 阅读(63) 评论(0) 推荐(0) 编辑

OpenCV参考手册
摘要:http://wiki.opencv.org.cn/index.php/Template:Doc http://www.opencv.org.cn/opencvdoc/2.3.2/html/doc/tutorials/tutorials.html http://wiki.opencv.org.cn/ 阅读全文

posted @ 2017-07-17 13:45 失落''80 阅读(90) 评论(0) 推荐(0) 编辑

最简单的MFC对话框程序
摘要:1.利用MFC向导,取消所有勾选; 2.生成的文件代码: 就一个主程序类和Dialog类,非常简洁. 阅读全文

posted @ 2017-07-14 13:46 失落''80 阅读(114) 评论(0) 推荐(0) 编辑

炫彩界面库入门
摘要:工程文件: 阅读全文

posted @ 2017-07-14 09:02 失落''80 阅读(759) 评论(0) 推荐(0) 编辑

vs2015 下 win32 - opencv打开摄像头
摘要:include: G:\CProgram\OpenCV\软件\opencv\build\include lib: G:\CProgram\OpenCV\软件\opencv\build\x86\vc12\lib opencv_calib3d249.libopencv_calib3d249d.libop 阅读全文

posted @ 2017-07-14 08:56 失落''80 阅读(817) 评论(0) 推荐(0) 编辑

MatLab R2016a 和VS2010混合编程
摘要:bin: C:\Program Files\MATLAB\R2016a\bin\win64 include: C:\Program Files\MATLAB\R2016a\extern\include C:\Program Files\MATLAB\R2016a\extern\include\win 阅读全文

posted @ 2017-07-14 08:50 失落''80 阅读(602) 评论(0) 推荐(0) 编辑

Highlighterr 1.8 for Visual Studio 2010
摘要:http://highlighterr.codeplex.com/ 阅读全文

posted @ 2017-07-12 17:04 失落''80 阅读(87) 评论(0) 推荐(0) 编辑

opencv 2.4.9 入门
摘要:#include "stdafx.h" #include <iostream>#include <opencv2/core/core.hpp>#include <opencv2/highgui/highgui.hpp> using namespace cv; int main() { Mat img 阅读全文

posted @ 2017-05-12 14:29 失落''80 阅读(79) 评论(0) 推荐(0) 编辑

智能指針
摘要:// test03.cpp : 定义控制台应用程序的入口点。 // #include "stdafx.h" #include #include #include #include using namespace std; class Foo { public: void print() { cout > v; vector v2; v2.push_back("111... 阅读全文

posted @ 2017-04-22 09:13 失落''80 阅读(78) 评论(0) 推荐(0) 编辑

QT所有版本的链接
摘要:QT所有版本的链接: http://download.qt.io/archive/qt/ 阅读全文

posted @ 2017-04-03 19:44 失落''80 阅读(69) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 下一页
点击右上角即可分享
微信分享提示