This is my first vision base on VC++6.0. I am so happy to record this time i succesfully create it by my seft.

It is so important,i must write down some details i have across through more than 1 years.altought i am exactly lazy guy.

Here are 3 (actually too many thing can talk about,but not must be)important thing to know.

1) I know little about c++ untill 2013(i forget the accuracy time) .As i am graduate from "mechanical and electric",i just had learn some base knowlege about c language like the most amout of students. I think i write more simply would be better....e..he

So,discard the above noise. I have begin attach to VB6.0 programming from 5.2012 to 1.2013. Within this period, i learn many thing about vision system checking,like (vb6 IDE,two kinds of industrial CCD camera,computer hardware & support techniques,barcode printing,txt&exel&dll&ocx&com Communication technique with vb6),and so on. base on that , i creat a new pinning system,improve a existing contrast test system, convert test program to automatic test system(com communicate with PLC),creat a new moudle to test voltage which diaplay best.

2)Since 9.2012 , i realise that vb6.0 can not catch up with the world . so i turn my eyes to c++.but i have no idea about this language, i find it hard to learn c++ without enviroment. so i focus on vb.net. There is a large gap between vb6 and vb.net,they just like two different language with similer IDE tool. i had been a cat run to the dark night,and covered by the night neerly a mouth.

since 1.2013,i egage in build a project with VB2008(i have know c++ and class a bit). Actually, i sucess  2 mouths later. i had build a complete QR barcode test demo.At this time, i find that vb2008 just like a result that combine vb6 and vc6.0. I decide push myself to VC++ this time .

And now.neerly  10 mouth pass , i have sucessfull build my own VC++ demo,happy!  Too many things can be say, but i must go to bed now. and i will go into next period quickly (about image process,may be opencv).

3)write to here, i forget what should be record becauce i am so tied. so let me cut it.

ok ,that all .yet,that all.

Mine Vison base on VC++ and procilica Gige Vison SDK的更多相关文章

  1. 如何判断平台工具集去做条件编译(VC++目录、预处理器定义、$(PlatformToolsetVersion))

    作者:zyl910 从VS2010开始,提供了一个平台工作集(Platform ToolSet)选项用于配制vc编译版本.到了VS2012,更是因为默认平台工具集不支持WindowsXP,导致经常需要 ...

  2. TortoiseGit 文件比对工具使用 Beyond Compare 和 DiffMerge

    TortoiseGit 内置的文件比对工具是 TortoiseMerge,用于文件比对和解决冲突合并,TortoiseGit 还支持外部的比对工具使用,比如 Beyond Compare 和 Diff ...

  3. TortoiseSVN 同步分支

    对比工具可以使用 winmerge 和 beyond compare ,winmerge免费小巧,beyond compare功能更强大.这两款工具都比TortoiseSVN自带的对比工具要好一些. ...

  4. TortoiseSVN 插件配置及使用方法

    一.安装和配置 TortoiseSVN的下载地址 32bit:TortoiseSVN-1.8.2.24708-win32-svn-1.8.3.msi 64bit:TortoiseSVN-1.8.2.2 ...

  5. How to use SourceGear DiffMerge in SourceSafe, TFS, and SVN【项目】

    What is DiffMerge DiffMerge is yet-another-diff-and-merge-tool from the fine folks at SourceGear.  I ...

  6. TortoiseSVN设置比较工具为BeyondCompare

    1.  "C:\Beyond Compare 4\BCompare.exe" %base %mine /title1=%bname /title2=%yname /leftread ...

  7. TortoiseSVN使用方法 安装和配置

    TortoiseSVN使用方法   安装和配置 TortoiseSVN的下载地址为 http://tortoisesvn.net/downloads.html 有32位和64位的版本,一定要根据自己的 ...

  8. 版本控制——TortoiseSVN (1)安装与配置

    =================================版权声明================================= 版权声明:原创文章 禁止转载  请通过右侧公告中的“联系邮 ...

  9. SVN && BeyondCompare

    [1]设置内容 (1)三个步骤对应设置内容 1.1 "D:\Beyond Compare 4\BCompare.exe" %base %mine /title1=%bname /t ...

随机推荐

  1. sublime text 2 licence

    ----- BEGIN LICENSE ----- Andrew Weber Single User License EA7E-855605 813A03DD 5E4AD9E6 6C0EEB94 BC ...

  2. 遇到的兼容性bug

    1.(IE6):ie6环境下,通过设置z-index:999:无效果: 原因:IE6下,决定层级高低的不是当前的父标签,而是整个DOM tree(节点树)的第一个relative属性的父标签. 解决办 ...

  3. 今日SGU 5.16

    SGU 119 题意:给你N.A0.B0,然后问所有X.Y,若A0X+B0Y能被N整除,则AX+BY也能被N整除,求所有的A.B.(0<=A.B<N) 收获:枚举 因为a0x+b0y=k1 ...

  4. vue 常用ui组件库

    vux github ui demo:https://github.com/airyland/vux Mint UI 项目主页:http://mint-ui.github.io/#!/zh-cn de ...

  5. 【Uva 1625】Color Length

    [Link]: [Description] 给你两个序列,都由大写字母组成; 每次,把两个序列中的一个的开头字母加在字符串的尾端,然后在那个序列中删掉那个开头字母; 最后得到一个字符串; 这个字符串显 ...

  6. [Python] Handle Exceptions to prevent crashes in Python

    Exceptions cause your application to crash. Handling them allows you to recover gracefully and keep ...

  7. [Python] Understand List Comprehensions in Python

    List comprehensions provide a concise way to create new lists, where each item is the result of an o ...

  8. 最小生成树-并查集-Kruskal-zoj-2048-special judge

    Highways description The island nation of Flatopia is perfectly flat. Unfortunately, Flatopia has a ...

  9. HDU 4405 概率期望DP

    有 0到 n 个格子.掷骰子走路,求出到终点的数学期望,有飞行的路线. dp[i] 存储在i位置走到终点的期望. 转移方程dp[i]=(dp[i+1] ----> dp[i+6])/6+1; 有 ...

  10. .Net写的比较清晰的接口

    尼玛,隔行如隔山. .Net真操蛋. /// <summary> /// 加入群 /// </summary> /// <returns></returns& ...