FeatureDetector::detect Detects keypoints in an image (first variant) or image set (second variant). FeatureDetector::create The following detector ty...
分类:
其他好文 时间:
2014-11-26 22:16:39
阅读次数:
190
使用HOGDescirptor可以实现ROI区域的检测,但是使用CascadeClassifier不能使用ROI检测,查看CascadeClassifier的类定义可以看到这样一个子类
public:
class CV_EXPORTS MaskGenerator
{
public:
virtual ~MaskGenerator() {}
...
分类:
其他好文 时间:
2014-11-26 19:04:26
阅读次数:
415
基于OpenCv从视频到摄像头的人脸检测在OpenCv中读取视频文件和读取摄像头的的视频流然后在放在一个窗口中显示结果其实是类似的一个实现过程。先创建一个指向CvCapture结构的指针CvCapture *capture;再用两个函数就可以分别获取到视频文件或者摄像头的一些状态信息,然后把这些信息...
分类:
其他好文 时间:
2014-11-26 18:46:57
阅读次数:
145
Use the OpenCV function cornerEigenValsAndVecs to find the eigenvalues and eigenvectors to determine if a pixel is a corner. Use the OpenCV function c...
分类:
其他好文 时间:
2014-11-26 18:42:32
阅读次数:
400
本文转自:http://www.cnblogs.com/summerRQ/articles/2524560.html 在OpenCV程序中,需要保存中间结果的时候常常会使用.xml / .yml文件,opencv2.0之前都是使用C风格的代码,当时读写XML文件分别使用函数cvLoad()...
分类:
其他好文 时间:
2014-11-26 18:38:38
阅读次数:
196
亚像素精度(更加精确) ~~ void cornerSubPix(InputArray image, InputOutputArray corners, Size winSize, Size zeroZone, TermCriteriacriteria) Parameters: image – In...
分类:
其他好文 时间:
2014-11-26 18:34:59
阅读次数:
291
Shi-Tomasi 算法是Harris 算法的改进。 Harris 算法最原始的定义是将矩阵 M 的行列式值与 M 的迹相减,再将差值同预先给定的阈值进行比较。后来Shi 和Tomasi 提出改进的方法,若两个特征值中较小的一个大于最小阈值,则会得到强角点。 void goodFeaturesTo...
分类:
其他好文 时间:
2014-11-26 17:57:58
阅读次数:
969
Harris 角点检测 ~~ Why is a corner so special Because, since it is the intersection of two edges, it represents a point in which the directions of these t...
分类:
其他好文 时间:
2014-11-26 16:04:47
阅读次数:
253
本系列文章由@浅墨_毛星云 出品,转载请注明出处。文章链接: http://blog.csdn.net/poem_qianmo/article/details/29356187作者:毛星云(浅墨)微博:http://weibo.com/u/1723155442知乎:http://www.zhihu....
分类:
其他好文 时间:
2014-11-26 13:56:11
阅读次数:
393
获取摄像机参数是为了来处理图像失真或者实现图像度量 ~~ Unfortunately, this cheapness comes with its price: significant distortion. Luckily, these are constants and with a calib...
分类:
其他好文 时间:
2014-11-26 13:33:20
阅读次数:
489