#include <opencv2/highgui/highgui.hpp> #include "LoadInfo.h" #include "GroundPlaneEstimation.h" #include <fstream> #include <iomanip> #include "config ...
分类:
其他好文 时间:
2016-06-04 07:00:55
阅读次数:
168
#include <opencv2/opencv.hpp>#include <opencv2/core/core.hpp>#include <opencv2/highgui/highgui.hpp>#include <iostream>using namespace std;using namesp ...
分类:
编程语言 时间:
2016-05-23 06:45:44
阅读次数:
428
1. ORB特征匹配 BruteForce-Hamming匹配 2. surf特征点、描述子、Flann算法匹配描述子 3. sift特征点、描述子+FLANN算法 #include <opencv2/core/core.hpp> #include <opencv2/highgui/highgui. ...
分类:
其他好文 时间:
2016-05-20 09:58:25
阅读次数:
882
把检测出的人脸用椭圆画出。使用opencv中自带的haarcascades
#include "opencv2/core/core.hpp"
#include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#i...
分类:
其他好文 时间:
2016-05-13 03:42:56
阅读次数:
232
OpenCV2.3中Random Trees(R.T.)的继承结构: API: Example: #include <cv.h> #include <stdio.h> #include <highgui.h> #include <ml.h> #include <map> void print_res ...
分类:
其他好文 时间:
2016-04-17 20:24:37
阅读次数:
205
#include<iostream>#include<cv.hpp>#include<highgui.hpp>using namespace std;using namespace cv;int pos_archor_width = 1;int pos_archor_heigh = 1;int ma ...
分类:
其他好文 时间:
2016-04-13 18:37:49
阅读次数:
129
//文中存在两种不同的图像的平滑类型。一类是彩色图像,还有一类是灰度图像。经证明,两种均能够 #include<cv.h> #include<highgui.h> #include<cxcore.h> int param1=1; int param2=1; IplImage *img; IplIma ...
分类:
其他好文 时间:
2016-03-29 08:56:06
阅读次数:
143
一、Opencv的结构分类: cxcore、cv、ML(Machine Learning)、HighGUI、cvcam、cvaux 二、常见结构的内容与算法: 1、cxcore库(基本结构和算法、XML的支持、绘图函数) : 2、cv模块(包含图像处理和视觉算法): 3、ML模块(包含图像处理和视觉
分类:
其他好文 时间:
2016-03-19 14:23:08
阅读次数:
170
OpenCV的HighGUI模块提供了cvCreateCameraCapture(),可以从摄像设备中读入视频流,函数参数为设备ID而不是文件名。默认值为-1,即随机选择一个设备。 示例程序: 1 /**************************************************
分类:
其他好文 时间:
2016-02-28 16:51:33
阅读次数:
153
摘自 <<Learning OpenCV: Computer Vision in C++ with the OpenCV Library>> #include "opencv2/highgui/highgui.hpp" using namespace cv; int main(int argc, c
分类:
其他好文 时间:
2016-02-26 08:09:31
阅读次数:
166