2012年9月25日

摘要: 原创文章,转载请注明出处安装平台:Mint 13 64 bit, Ubuntu 12.04同样适用,其他Linux distributions 根据情况做相应修改CUDA 的安装1. 从NVIDIA官网下载驱动Toolkit(选Ubuntu 11.04 64bit),Driver, SDK2. 安装其他依赖的库文件sudo apt-get install g++ build-essentialsudo apt-get install freeglut3-dev libx1-dev libxmu-dev libxi-dev libgl1-mesa-glx libgl1-mesa-dev sudo 阅读全文
posted @ 2012-09-25 17:12 Never more 阅读(1324) 评论(1) 推荐(1)

2012年7月24日

摘要: 权限符号,总共是- --- --- ---这几个位。第一个短横处是文件类型识别符 - 表示普通文件 c 表示字符设备(character) b 表示块设备(block) d 表示目录(directory) l 表示链接文件(link) 后面第一个三个连续的短横是用户权限位(User),第二个三个连续短横是组权限位(Group),第三个三个连续短横是其它权限位(Other)。每个权限位有三个权限,r(读权限),w(写权限),x(执行权限)。如果每个权限位都有权限存在,那么满权限的情况就是:-rwxrwxrwx;权限都为空的情况就是- --- --- ---。权限的设定可以用chmod命令,其格式 阅读全文
posted @ 2012-07-24 21:25 Never more 阅读(280) 评论(0) 推荐(0)

2012年7月23日

摘要: 增加环境变量用鼠标右键单击我的电脑à属性à高级à环境变量,A.在系统变量框中新建变量名为:CYGWIN,变量值为:ntsec tty 的变量。B.编辑path变量,在原变量值后加上以分号分隔的C:\Cygwin\bin字符串,注意保留原变量的值!1. 安装cygwin, 并安装sshd.(跟openssh有关的都选上^^)2. 打开cygwin控制台:输入ssh-host-config,一路yes. value 填写ntsec tty(如果vista或者win7,需要右键->管理员身份运行 cygwin)部分屏幕显示:$ ssh-host-configOve 阅读全文
posted @ 2012-07-23 19:16 Never more 阅读(1853) 评论(0) 推荐(0)

2012年7月3日

摘要: Scalar intensity = img.at<uchar>(y, x);intensity.val[0]contains a value from 0 to 255. Note the ordering ofxandy. Since in OpenCV images arerepresented by the same structure as matrices, we use the same convention for both cases - the 0-based row index(or y-coordinate) goes first and the 0-bas 阅读全文
posted @ 2012-07-03 14:06 Never more 阅读(376) 评论(0) 推荐(0)

2012年5月8日

摘要: Suppose X can have one of m values… V1, V2, … VmP(X=V1) = p1, .... , P(X=Vm) = pmWhat’s the smallest possible number of bits, on average, per symbol, needed to transmit a stream of symbols drawn from X’s distribution?It’s“High Entropy” means X is from a uniform (boring) distribution“Low Entropy” mea 阅读全文
posted @ 2012-05-08 16:03 Never more 阅读(489) 评论(0) 推荐(0)

导航