一本opencv好书, 在我上传的资源里
Computer Vision is a rapidly expanding area and it is becomingprogressively easier for developers to make use of this field dueto the ready availability of high quality libra...
分类:
其他好文 时间:
2015-03-16 11:10:16
阅读次数:
207
1. 字符编码简介 1.1. ASCII ASCII(American Standard Code for Information Interchange),是一种单字节的编码。计算机世界里一开始只有英文,而单字节可以表示256个不同的字符,可以表示所有的英文字符和许多的...
分类:
编程语言 时间:
2015-03-16 08:42:54
阅读次数:
235
chromium启动总是出现警告提示:
[4428:4428:51288848814:WARNING:zygote_host_impl_linux.cc(165)] Running without the SUID sandbox! See http://code.google.com/p/chromium/wiki/LinuxSUIDSandboxDevelopment for more information on developing with the sandbox on.
更新...
分类:
其他好文 时间:
2015-03-14 17:01:09
阅读次数:
165
软件测试[1-2]是使用人工操作或者软件自动运行的方式来检验它是否满足规定的需求或弄清预期结果与实际结果之间的差别的过程。它是帮助识别开发完成(中间或最终的版本)的计算机软件(整体或部分)的正确度(correctness) 、完全度(completeness)和质量(quality)的软件过程;是S...
分类:
其他好文 时间:
2015-03-14 16:39:29
阅读次数:
140
今日在安装完nagios后,通过网页界面点击主机、服务、问题页面时、均报错,报错的内容都一样It appears as though you do not have permission to view information for any of the services you requeste...
分类:
移动开发 时间:
2015-03-11 17:07:42
阅读次数:
210
多态性带来了一个问题,就是如何判断一个变量所实际引用的对象的类型 。 C++使用runtime-type information(RTTI),Java 使用 instanceof 操作符。instanceof 运算符用来判断一个变量所引用的对象的实际类型,注意是它引用的对象的类型,不是变量的类型。请...
分类:
编程语言 时间:
2015-03-11 12:48:54
阅读次数:
192
Android Studio 终于可以正常使用了。我对Google的联网做法实在无语。 Fetching Android SDK component information. 也解决了Gradle: resolve dependancies '_debugCompile' 这个问题。...
分类:
移动开发 时间:
2015-03-11 10:58:39
阅读次数:
273
- (UIImage *)resizeImage:(UIImage *)image
withQuality:(CGInterpolationQuality)quality
rate:(CGFloat)rate
{
UIImage *resized =
nil;
CGFloat width = image.size.wid...
分类:
其他好文 时间:
2015-03-11 10:52:49
阅读次数:
149
Mysql:要想知道每个数据库的大小的话,步骤如下:1、进入information_schema数据库(存放了其他的数据库的信息)useinformation_schema;2、查询所有数据的大小:selectconcat(round(sum(data_length/1024/1024),2),‘MB‘)asdatafromtables;3、查看指定数据库的大小:比如查看数..
分类:
数据库 时间:
2015-03-10 01:37:14
阅读次数:
174