摘要: ORB中有很多参数可以设置,在OpenCV中它可以通过ORB来创建一个ORB检测器。ORB::ORB(int nfeatures=500, float scaleFactor=1.2f, int nlevels=8, int edgeThreshold=31, int firstLevel=0, i... 阅读全文
posted @ 2016-12-01 15:42 洛笔达 阅读(1834) 评论(0) 推荐(0) 编辑
摘要: 仿射estimateRigidTransform():计算多个二维点对或者图像之间的最优仿射变换矩阵 (2行x3列),H可以是部分自由度,比如各向一致的切变。getAffineTransform():计算3个二维点对之间的仿射变换矩阵H(2行x3列),自由度为6.warpAffine():对输入图像... 阅读全文
posted @ 2016-12-01 11:17 洛笔达 阅读(655) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #ifdef _DEBUG#pragma comment ( lib,"opencv_highgui244d.lib" )#pragma comment ( lib,"opencv_core244d.lib" ... 阅读全文
posted @ 2016-11-29 17:24 洛笔达 阅读(800) 评论(0) 推荐(0) 编辑
摘要: #include #include "opencv/cv.h" #include "opencv/cxcore.h" #include "opencv/highgui.h" using namespace std; #pragma comment ( lib,"opencv_highgu... 阅读全文
posted @ 2016-11-29 14:42 洛笔达 阅读(807) 评论(0) 推荐(0) 编辑
摘要: RTSP rtsp://admin:Shws1610@192.168.1.33:554/channel/01UDP 播放推导本机上的udp流 : udp://@:1234播放其他机器上的udp流 udp://ip:1234 阅读全文
posted @ 2016-11-12 23:26 洛笔达 阅读(3254) 评论(0) 推荐(0) 编辑
摘要: 准备工作: 1. VS2013 的最新更新版或者VS2015 2. QT Creater 5.7 https://www.qt.io/ 3. CMake (cmake-gui) 4. obs 依赖包,下载下来后放在自己的obs主目录下 根据自己的VS版本来下载 VS2013: https://obs 阅读全文
posted @ 2016-11-07 18:32 洛笔达 阅读(953) 评论(0) 推荐(0) 编辑
摘要: #include #include #include void fun1(char** s);void fun2(char** s);void fun3(char** s);void fun1(char** s){ char* _s = *s; *s = (char*)malloc(sizeof(c... 阅读全文
posted @ 2016-10-25 15:44 洛笔达 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 1. core文件生成打开方式: ulimit -c unlimited echo "1" > /proc/sys/kernel/core_uses_pid 看下服务器上是否安装了 gdb,没有的话要装一下 以调试模式打开程序 ./sip_gw -t2 -n 1 之后程序会crashed, 程序目录 阅读全文
posted @ 2016-10-25 10:11 洛笔达 阅读(6745) 评论(0) 推荐(0) 编辑
摘要: 1. error: ‘for’ loop initial declarations are only allowed in C99 mode 这是因为gcc基于c89标准,换成C99标准就可以在for循环内定义i变量了: gcc src.c -std=c99 -o src 2. cpp引用.c文件 阅读全文
posted @ 2016-10-14 09:35 洛笔达 阅读(1267) 评论(0) 推荐(0) 编辑
摘要: 生成可执行文件 g++ mutiprocess.cpp -o test-fpic:产生位置无关码,位置无关码就是可以在进程的任意内存位置执行的目标码,动态链接库必须使用-c : 只生成 .o 文件-o : 生成可执行文件-g : 生成可调试文件 -lworld表示libworld.so动态库文件... 阅读全文
posted @ 2016-10-08 17:11 洛笔达 阅读(715) 评论(0) 推荐(0) 编辑