最大的Qt4程序群(KDE4)采用cmake作为构建系统Qt4的python绑定(pyside)采用了cmake作为构建系统开源的图像处理库
opencv 采用cmake 作为构建系统...看来不学习一下cmake是不行了,一点一点来吧,找个最简单的C程序,慢慢复杂化,试试看:例子一单个源文件
ma...
分类:
其他好文 时间:
2014-07-22 23:13:14
阅读次数:
423
客户端:/* *
=====================================================================================
* * Filename: client.cpp * * Description:...
分类:
Web程序 时间:
2014-04-30 20:27:45
阅读次数:
726
在使用opencv的过程中,无论使用原始的IplImage和CvMat类型,还是用最新C++版本的Mat类型,在创建和使用过程中,经常会遇到CV_8UC1、CV_8UC3、CV_32FC3等声明,我以前也经常遇到,曾经看懂了,现在又忘记了,现在把它写下来,方便以后查看,遇到同样问题的菜鸟也能尽快.....
分类:
其他好文 时间:
2014-04-28 10:38:57
阅读次数:
539
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