2016年10月23日
摘要: 写入如下内容 此时opencv-lena文件夹中已经产生了可执行文件DisplayImage,下载lena.jpg放在opencv-lena下,运行 阅读全文
posted @ 2016-10-23 16:40 Kevin.Tu 阅读(41881) 评论(1) 推荐(1) 编辑
  2016年9月28日
摘要: 1. 首先写好待编译的.cpp文件,使用混合编程,以人脸检测为例 #include "mex.h" // Required for the use of MEX files // Required for OpenCV #include "cv.h"static CvMemStorage* stor 阅读全文
posted @ 2016-09-28 16:32 Kevin.Tu 阅读(3045) 评论(0) 推荐(0) 编辑
  2016年9月21日
摘要: 首先声明,本人系统ubuntu 14.04.1 LTS, 以下所有软件均安装于该系统。 一. 首先在windows下删除ubuntu,删除方法如下: 1.进入win7,下载个软件MbrFix,放在C:\windows\system32文件夹中 2.点击开始》所有程序》附件》命令提示符 3.在命令提示 阅读全文
posted @ 2016-09-21 17:28 Kevin.Tu 阅读(508) 评论(0) 推荐(0) 编辑
摘要: 最近运行一个程序,出现错误 ’event.h‘,猜想是缺少event lib 库 于是安装sudo apt-get install libevent-dev 即可. 阅读全文
posted @ 2016-09-21 16:46 Kevin.Tu 阅读(150) 评论(0) 推荐(0) 编辑
摘要: 1.首先查磁盘UUID:sudo blkid 2.打开挂载文件:sudo /etc/fstab 3.写挂载文件: UUID=000860AE000FDD66 /mnt/disk1 auto 0 0 UUID=0007468E000FFCF1 /mnt/disk2 auto 0 0 UUID=0005 阅读全文
posted @ 2016-09-21 15:53 Kevin.Tu 阅读(307) 评论(0) 推荐(0) 编辑
  2016年6月20日
摘要: 取半径=3 用matlab代码实现上式公式: length=3;for Ki = 1:length for Kj = 1:length for Kk = 1:length Ksigma(Ki,Kj,Kk)=exp(-(Ki-2)^2/8-(Kj-2)^2/8-(Kk-2)^2/8); 此公式为:K( 阅读全文
posted @ 2016-06-20 15:26 Kevin.Tu 阅读(671) 评论(0) 推荐(0) 编辑
  2016年5月18日
摘要: 可以再开一个终端,top找到firefox的PID号,比如12170 sudo kill 12170 即可 阅读全文
posted @ 2016-05-18 17:31 Kevin.Tu 阅读(698) 评论(0) 推荐(0) 编辑
  2016年5月16日
摘要: 1. tensorflow安装教程:https://www.tensorflow.org/versions/r0.8/get_started/os_setup.html#pip-installation cuda8.0 使用这个网站安装教程:http://blog.csdn.net/u0109005 阅读全文
posted @ 2016-05-16 21:52 Kevin.Tu 阅读(4722) 评论(0) 推荐(0) 编辑
  2016年5月13日
摘要: 我们在自己写python模块的时候,怎么样把自己写的模块加入到python默认就有的搜索路径中呢?不要每次非得import sys; sys.path.append(‘/home/uestc/researchDocuments/caffeNotebookExamples/’)才可。 解决办法是:自己 阅读全文
posted @ 2016-05-13 00:47 Kevin.Tu 阅读(3017) 评论(0) 推荐(0) 编辑
  2016年5月12日
摘要: 1. 在ppt中画图,如果此图要粘贴到word里面,最好指定ppt页面大小,视情况而定。 2. 在ppt中另存为此图为pdf文件。 3. 下载photoshop,安装打开此pdf格式文件。 4. 在photoshop中保存此pdf文件为任意你想要的图片格式。精度高的绝对没话说。 阅读全文
posted @ 2016-05-12 08:54 Kevin.Tu 阅读(455) 评论(0) 推荐(0) 编辑