码迷,mamicode.com
首页 >  
搜索关键字:highgui    ( 260个结果
draft code of SOCP based on .Mat
#include <opencv2/highgui/highgui.hpp> #include "LoadInfo.h" #include "GroundPlaneEstimation.h" #include <fstream> #include <iomanip> #include "config ...
分类:其他好文   时间:2016-06-04 07:00:55    阅读次数:168
SAD算法在opencv上的实现代码(c++)
#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
OpenCV码源笔记——RandomTrees (一)
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
OPENCV中滑动条的使用
//文中存在两种不同的图像的平滑类型。一类是彩色图像,还有一类是灰度图像。经证明,两种均能够 #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结构与内容
一、Opencv的结构分类: cxcore、cv、ML(Machine Learning)、HighGUI、cvcam、cvaux 二、常见结构的内容与算法: 1、cxcore库(基本结构和算法、XML的支持、绘图函数) : 2、cv模块(包含图像处理和视觉算法): 3、ML模块(包含图像处理和视觉
分类:其他好文   时间:2016-03-19 14:23:08    阅读次数:170
2、由摄像机读入数据
OpenCV的HighGUI模块提供了cvCreateCameraCapture(),可以从摄像设备中读入视频流,函数参数为设备ID而不是文件名。默认值为-1,即随机选择一个设备。 示例程序: 1 /**************************************************
分类:其他好文   时间:2016-02-28 16:51:33    阅读次数:153
Display a picture
摘自 <<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
260条   上一页 1 ... 8 9 10 11 12 ... 26 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!