https://blog.csdn.net/jxcr1984/article/details/52766524 本文转自: http://blog.csdn.net/leixiaohua1020/article/details/14214577 /* *雷霄骅 *leixiaohua1020@126.com *中国传媒大学/数字电视技术 */ /** * Audio Video Frame. * New fields can be added to the end…
在前面一篇教程中,我们学习了OpenCV中基于特征脸的人脸识别的代码实现,我们通过代码 Ptr<FaceRecognizer> model = createEigenFaceRecognizer(); 创建了人脸识别模型类,该识别模型类基于特征值人脸.该类有几个重要的成员: int _num_components; double _threshold; vector<Mat> _projections; Mat _labels; Mat _eigenvectors; M…