摘要: There are many SIFT blogs either on cnnblog or csdn. I reviewed many. However, in my view, there are not in details. Mainly that they do not offer a g 阅读全文
posted @ 2016-06-06 21:16 steven_xiu 阅读(202) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2016-06-06 14:16 steven_xiu 阅读(128) 评论(0) 推荐(0)
摘要: sift match but obviously it is not correct. 阅读全文
posted @ 2016-06-05 14:30 steven_xiu 阅读(101) 评论(0) 推荐(0)
摘要: opencv_calib3d2413d.lib; opencv_contrib2413d.lib; opencv_core2413d.lib; opencv_features2d2413d.lib; opencv_flann2413d.lib; opencv_gpu2413d.lib; opencv 阅读全文
posted @ 2016-06-05 13:42 steven_xiu 阅读(887) 评论(0) 推荐(0)
摘要: Bin 目录用来存放编译的结果,bin是二进制binrary的英文缩写,因为最初C编译的程序文件都是二进制文件,它有Debug和Release两个版本,分别对应的文件夹为bin/Debug和bin/Release,这个文件夹是默认的输出路径,我们可以通过:项目属性—>配置属性—>输出路径来修改。 o 阅读全文
posted @ 2016-06-05 12:41 steven_xiu 阅读(168) 评论(0) 推荐(0)
摘要: http://blog.sina.com.cn/s/blog_62c832270101d92u.html 有感于讲C语言的DLL文件的文章很少,自己查了半天,写了这么个非常简单的教程。自己也是摸C语言不久,依然感觉处于编程苦手的阶段。 1)为什么使用DLL文件 C语言复用代码有很多的形式,利用动态链 阅读全文
posted @ 2016-06-05 12:26 steven_xiu 阅读(215) 评论(0) 推荐(0)
摘要: /*#include "cv.h"#include "highgui.h" using namespace cv; //下面的所有cv相关类型不用加上前缀了 int main(int argc, char* argv[]){ Mat img = imread("502.jpg"); //声明Mat变 阅读全文
posted @ 2016-06-04 14:17 steven_xiu 阅读(127) 评论(0) 推荐(0)
摘要: #include #include "LoadInfo.h" #include "GroundPlaneEstimation.h" #include #include #include "config.h" using namespace cv; using namespace std; #include "LP_Interface.h" std::string getFileN... 阅读全文
posted @ 2016-06-04 02:40 steven_xiu 阅读(155) 评论(0) 推荐(0)
摘要: int a; int* a_ptr=&a; int** a_ptr_ptr=&a_ptr; 阅读全文
posted @ 2016-06-04 02:19 steven_xiu 阅读(144) 评论(0) 推荐(0)
摘要: Someone says, " I just want to define a int var in a .h file. Who pa Who? Now we see the following example. Static: Local in YOU ah.h static int a=1; 阅读全文
posted @ 2016-06-03 20:39 steven_xiu 阅读(127) 评论(0) 推荐(0)