Halcon是德国MvTec公司开发的一套完善的标准的机器视觉算法包。1、拥有应用广泛的机器视觉集成开发环境-Hdevelop;2、提供卓越的性能,全面支持多核平台、SSE2和AVX(intel新的指令扩展集),以及GPU加速;3、支持windows、linux和mac
os x操作环境,函数库.....
分类:
其他好文 时间:
2014-05-20 00:41:14
阅读次数:
799
1. 什么是面向对象2. 应该如何学习面向对象3. 面向对象的思维方式1. 什么是面向对象
面向对象是一种编程方法 面向对象是一种思维方式 面向对象不是一种编程语言2. 应该如何学习面向对象 掌握一门面向对象语言的语法 掌握面向对象的思维方式 C语言
面向过程, 模拟CPU执行指令的顺序编写 而 面...
分类:
其他好文 时间:
2014-05-19 21:31:31
阅读次数:
214
最近在做毕设的收尾工作,很多程序都要部署到linux下来运行,遇到了挺多问题,昨天就集中性遇到了 在编译应用时,遇到了/usr/bin/ld: cannot
find -lxxx这种情况是系统找不到对应的库文件,其中,-lxxx表示链接库文件 libxxx.so。其命名规则是:lib+库名(即xxx...
分类:
其他好文 时间:
2014-05-19 21:30:52
阅读次数:
226
在多设备(模拟器)时,想要直接用logcat查看其中一台的状态,或者直接把应用安装到目标设备上时,需要指定设备号。adb
devices这个指令可以得到当前设备的序列号(serialNumber)。比如一个模拟器通常是 emulator-5554在adb的指令后面加上参数 -s
比如 -s emu....
分类:
移动开发 时间:
2014-05-19 11:38:07
阅读次数:
373
题目链接:POJ 1573 Robot Motion&POJ 2632Crashing
Robots【题意】题意就不说了,有兴趣从链接点进去看吧,就是机器人各种打扫房间,行驶指令。【思路】2632是一道纯模拟题,只要把题意读懂,就可以用代码模拟过程,只是写起来有点蛋疼,代码力还是欠缺啊。而1573感...
分类:
其他好文 时间:
2014-05-19 10:22:18
阅读次数:
197
1. 用预处理指令#define 声明一个常数,用以表明 1
年中有多少秒(忽略闰年问题)#define SECONDS_PER_YEAR (60 * 60 * 24 * 365)UL我在这想看到几件事情:1).
#define 语法的基本知识(例如:不能以分号结束,括号的使用,等等)2). 懂得预...
分类:
编程语言 时间:
2014-05-17 14:46:32
阅读次数:
389
修改及查看mysql数据库的字符集Liunx下修改MySQL字符集:1.查找MySQL的cnf文件的位置find/-iname‘*.cnf‘-print/usr/share/mysql/my-innodb-heavy-4G.cnf/usr/share/mysql/my-large.cnf/usr/share/mysql/my-small.cnf/usr/share/mysql/my-medium.cnf/usr/share/mysql/my-huge.cn..
分类:
数据库 时间:
2014-05-16 02:33:28
阅读次数:
426
material=newMaterial(Shader.Find("Custom/Alpha"));material.SetFloat("_Shininess",materialAlpha);voidOnRenderImage(RenderTexturesource,RenderTexturedestination){Graphics.Blit(source,destination,material);}
分类:
其他好文 时间:
2014-05-16 02:28:04
阅读次数:
572
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all unique triplets in the array which gives the sum of zero....
分类:
其他好文 时间:
2014-05-16 01:34:36
阅读次数:
293
【题目】
Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two lines, which together with x-axis forms a contain...
分类:
其他好文 时间:
2014-05-16 01:32:47
阅读次数:
406