1. 安装OpenCV和VS。本人电脑安装的是opencv2.4.10和vs20122.配置环境变量以下以win8 64位系统为例:计算机-》属性-》高级系统设置-》环境变量然后在system variables中编辑Path:加入D:\Program Files\opencv\build\x86\...
分类:
其他好文 时间:
2014-10-17 00:07:03
阅读次数:
373
1.列出MYSQL支持的所有字符集:SHOW CHARACTER SET;2.当前MYSQL服务器字符集设置SHOW VARIABLES LIKE 'character_set_%';3.当前MYSQL服务器字符集校验设置SHOW VARIABLES LIKE 'collation_%';4.显示某...
分类:
数据库 时间:
2014-10-15 17:59:41
阅读次数:
207
??
1
连接MYSQL服务器:mysql–uroot –p123456
查看中文问题
show variables like 'character%';
2
修改mysql的字符集,退出mysql提示符界面:
mysql -uroot -p--default_character_set=gbk;
3
数据库的操作...
分类:
数据库 时间:
2014-10-15 12:41:11
阅读次数:
305
??
第一层因素:
mysql的自身的设置
mysql有六处使用了字符集,分别为:client
、connection、database、results、server
、system。
mysql>show variables like 'character%';
+-------------------...
分类:
数据库 时间:
2014-10-15 12:41:05
阅读次数:
256
[Machine Learning (Andrew NG courses)]IV.Linear Regression with Multiple Variables...
分类:
系统相关 时间:
2014-10-13 11:13:09
阅读次数:
219
第四、五周练习题
1.a. Define a class called BlogEntry that could be used to store an entry for a
Weblog. The class should have instance variables to store the poster’s
username, text of the entry, and th...
分类:
其他好文 时间:
2014-10-12 20:34:38
阅读次数:
335
首先说什么是缓冲区:
缓冲区就是在.fx效果文件(.ps .vs也是) 里面定义的一个数据结构。用于.fx和cpp文件的数据通信。
比如://--------------------------------------------------------------------------------------
// Constant Buffer Variables
//---------...
分类:
其他好文 时间:
2014-10-12 17:08:38
阅读次数:
168
BFS:Is it possible that a solution exists using only one single queue? Yes, you bet. The single queue solution requires two extra counting variables w...
分类:
其他好文 时间:
2014-10-11 03:37:04
阅读次数:
190
最近发现,在MySQL的dos客户端输出窗口中查询表中的数据时,表中的中文数据都显示成乱码,如下图所示: 上网查了一下原因:之所以会显示乱码,就是因为MySQL客户端输出窗口显示中文时使用的字符编码不对造成的,可以使用如下的命令查看输出窗口使用的字符编码1 show variables l...
分类:
数据库 时间:
2014-10-09 17:26:38
阅读次数:
215
1 查看默认及支持的存储引擎mysql->show engines;2 查看mysql当前默认的存储引擎mysql->show variables like '%storage_engine%';3 查看test数据库buyer表的存储引擎mysql->show table status from ...
分类:
数据库 时间:
2014-10-08 13:12:55
阅读次数:
220