摘要: 三种方法分别问: 指针访问:void colorReduce_ptr(cv::Mat &inputImage, cv::Mat &outputImage, int div); 迭代器访问:void colorReduce_iterator(cv::Mat &inputImage, cv::Mat & 阅读全文
posted @ 2016-04-15 18:09 Fienly 阅读(2177) 评论(0) 推荐(0) 编辑
摘要: 今天看到一篇文章《使用 OpenCV 与 Face++ 实现人脸解锁》,感觉挺好玩,就照着作者的讲解,写了一下。详细内容还请看原作者文章。 参考文献:《使用 OpenCV 与 Face++ 实现人脸解锁》:http://python.jobbole.com/84666/ 阅读全文
posted @ 2016-04-13 23:45 Fienly 阅读(1468) 评论(0) 推荐(0) 编辑
摘要: 下载并安装Visual Studio Community 2015。具体安装步骤自行解决。下载地址: https://www.visualstudio.com/ 下载opencv3.1.0,并解压。地址: http://opencv.org/ 配置: 1、打开Visual Studio,随便新建一个 阅读全文
posted @ 2016-03-29 13:34 Fienly 阅读(1577) 评论(0) 推荐(0) 编辑
摘要: rhel服务器版本安装之后,默认创建的用户不能使用sudo。使用sudo,会提示 user1 is not in the sudoers file. This incident will be reported. 解决方法(比如创建的用户叫做user1, 密码user1pass): 1、直接运行vi 阅读全文
posted @ 2016-03-12 14:58 Fienly 阅读(805) 评论(0) 推荐(0) 编辑
摘要: 安装codeblocks: 配置codeblocks使用opencv3 1、首先执行下面两条命令,查看本机的Include paths 和 Library search path: 2、然后打开codeblocks: setting->complier->Linker settings 把/usr/ 阅读全文
posted @ 2016-03-11 19:39 Fienly 阅读(1037) 评论(0) 推荐(0) 编辑
摘要: 我装的是rhel7 服务器版本(在virtualbox虚拟机里),安装后默认不启动网络,另外还有很多命令也不能用,比如ifconfig, yum-config-manager等。 先解决网络问题: 切换root用户 在/etc/sysconfig/network-scripts目录下有一个和你网卡有 阅读全文
posted @ 2016-03-10 23:40 Fienly 阅读(522) 评论(0) 推荐(0) 编辑
摘要: 首先安装依赖包。ubuntu15.01安装的时候会出现这个错误: virtualbox-5.0 depends on libvpx1 (>= 1.0.0); however: Package libvpx1 is not installed 而且sudo apt-get install libvpx 阅读全文
posted @ 2016-03-03 16:51 Fienly 阅读(1163) 评论(0) 推荐(0) 编辑
摘要: 重装系统之后,把文件从windows分区拷到linux分区发现所有文件的权限全是777,在终端下看到所有文件的颜色都很刺眼,文件有很多,一个一个改不现实,所以写了一段python脚本批量更改文件权限。 权限更改说明:所有文件夹权限为775, 文件权限为664。 思路:先把所有文件和文件夹设置为664 阅读全文
posted @ 2016-03-01 10:25 Fienly 阅读(1521) 评论(0) 推荐(0) 编辑
摘要: 环境:ubuntu15.10 64位 英文版 软件:fcitx输入法框架,及多种拼音输入法 linux的英文系统会比中文少很多麻烦,特别是在命令行输入路径的时候,如果路径是中文将是一件很头疼的问题。但是英文版的linux没有自带中文输入法,中文的会自带,ubuntu15.10自带fcitx和中文输入 阅读全文
posted @ 2016-02-29 13:32 Fienly 阅读(4295) 评论(3) 推荐(0) 编辑
摘要: 1、用于科学计算的常用包: sudo apt-get install python-numpy python-scipy python-matplotlib ipython ipython-notebook python-pandas python-sympy python-nose 包括,nump 阅读全文
posted @ 2016-02-28 14:31 Fienly 阅读(1636) 评论(0) 推荐(1) 编辑