Emgu
CV是.NET平台下对OpenCV图像处理库的封装,也就是.NET版。可以运行在C#、VB、VC++等。安装完成后需要设置环境变量,比如我安装在D:\Emgu\emgucv-windows-universal-cuda
2.9.0.1922,然后再系统环境变量添加D:\Emgu\emguc...
分类:
其他好文 时间:
2014-04-28 04:50:47
阅读次数:
929
此系列文章只是OpenCV
tutorials的学习和总结。网址:http://docs.opencv.org/doc/tutorials/tutorials.html基础OpenCV入门包括以下内容:OpenCV介绍---------------------------------学习如何安装Op...
分类:
其他好文 时间:
2014-04-27 22:34:28
阅读次数:
503
/*
功能:实现对眼睛、脸部的跟踪。
版本:1.0
时间:2014-4-27
*/
#include
#include
#include
#include
#include
#include
using namespace std;
using namespace cv;
void detectEyeAndFace( Mat frame );
//将下面两个文件复制到当前工...
分类:
其他好文 时间:
2014-04-27 20:40:47
阅读次数:
659
对人脸进行检测#include "opencv2/core/core.hpp"
#include "opencv2/objdetect/objdetect.hpp"
#include "opencv2/highgui/highgui.hpp"
#include "opencv2/imgproc/imgproc.hpp"
#include
#include
using names...
分类:
其他好文 时间:
2014-04-27 20:26:15
阅读次数:
596