
C/C++
吃葡萄倒吐葡萄皮
Love is a rainbow, short and beautiful!
展开
-
opencv-2.4.13 vs2013安装配置
下载: OpenCV 下载地址:http://opencv.org/downloads.html 解压假定为目录:E:/opencv 环境变量配置: 右击我的电脑,属性-高级系统设置-高级-环境变量 分别设置如下 系统变量PATH:e.g. E:\opencv\build\x86\vc12\bin用户变量: 添加opencv变量:e.g. E:\opencv\buil翻译 2016-10-24 19:51:25 · 1020 阅读 · 0 评论 -
一起学opencv2(一)
opencv翻译 2016-10-26 09:36:27 · 320 阅读 · 0 评论 -
opencv2中vs2013配置保存和调用
针对每次新建一个opencv项目都需要重新配置的麻烦,采取项目配置保存的方法。 视图-其他窗口-属性管理器 以Debug为例:右击Debug,新建项目属性表,新建了 debugx86.props 配置项,点开可查看并配置好 将这个文件保存起来,新建一个项目填入程序 #include #include #include "open原创 2016-10-25 17:50:31 · 806 阅读 · 0 评论 -
c++中的变量做数组长度
在c++中时不支持变量作为数组长度参数的,如 int n=10;byte bs[n]; 这样写会提示编译错误”表达式必须含有常量值“。 虽然用变量声明数组大小会报编译错误,但是可以通过指针来动态申请空间实现动数组长度的变量赋值,写法如下: 1 int length = 10; 2 int * varArray; 3 varArray = new int[length];转载 2016-10-20 19:30:56 · 2273 阅读 · 0 评论 -
一起学opencv (八) 分水岭和选取segment
mian /*------------------------------------------------------------------------------------------*\ This file contains material supporting chapter 5 of the cookbook: Computer Vision Programming using翻译 2016-11-15 21:36:32 · 1082 阅读 · 0 评论 -
jetson tx1 ros 安装
参考:https://github.com/davheld/GOTURN $ git clone https://github.com/jetsonhacks/installROSTX1.git $ cd installROSTX1 $ ./installROSTX1 $ ./setupWorkspace.sh 如果无法链接到主机,通过ifconfig获得ROS主机ip地址,修改翻译 2017-01-04 09:14:56 · 1041 阅读 · 0 评论