基于肤色相似度的人脸检测与定位
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
毕业设计(论文)
基于肤色相似度的人脸检测与定位
摘要
本课题致力于完成Visual C++ 6.0平台下的人脸检测与定位系统,人脸检测定位的算法限制于基于肤色相似度算法。要完成的工作包括相似度的计算,图像的二值化,垂直直方图和水平直方图的获取,人脸特征(眼睛、嘴和鼻子)的提取。本课题着重于肤色模型相似度在人脸检测与定位中的应用,对增加人脸检测与定位的准确率的研究有一定的指导意义。
提出一种基于肤色的人脸检测定位算法,设计了基于肤色的人脸检测和定位系统。采用了脸部皮肤之间相似度的方法以及二值化方法,使用了基于边界方法和基于区域方法相结合的算法,提取了眼睛、嘴和鼻子等关键特征,最终较好地实现了人脸定位。在Microsoft Windows平台上,利用Visual C+ + 6. 0 开发了软件。
本课题的成果具有一定的应用价值。实验结果表明,该软件对于一定尺寸范围内清晰的正面人脸图能够正确检测定位并提取特征,并且在速度和准确性方面具有良好的性能。
关键词:图像分割;人脸定位;肤色;人脸检测;特征提取
基于肤色相似度的人脸检测与定位
Detection and Localization of Person Face Based
on Skin Color Similarity
Abstract
This topic devotes to completing the detection and localization system of the person face under the Visual C++ 6.0 platforms, and the detection localization algorithm of the person face limit to basing on the skin color similarity algorithm. The topic must complete similarity computation, binary image processing, vertical histogram, horizontal histogram and extracting person face characteristic (eye, mouth and nose). This topic emphasize application of skin color model similarity in the detection and the localization of person face, and has a significant instruction for research of increasing accuracy in detection and the localization of person face.
In this paper, the authors have presented an algorithm and designed a system for face detection and location based on complexion. By strengthening the contrast between face features and by adopting binary image processing method, the system has improved the preprocessing effect; and by using boundary-based algorithm plus region-based algorithm , the system has realized face location through the extraction of the features of eyes, nose and mouth. Taking advantages of Visual C++ 6.0, the authors have also developed corresponding software based on Microsoft Windows.
Production of this paper have definite application value.Experiment results prove that the system is valid in detecting, locating and extracting frontal view face features in a certain range.And it possess favorable performance in rapidity and accuracy.
Key words: image segmentation; face localization; complexion; face detection;feature ex- traction
安徽工程科技学院毕业设计(论文)
目录
引言 (1)
第1章人脸检测与定位概述 (2)
1.1人脸检测的定义、应用及难点 (2)
1.2人脸检测的研究背景及现状 (2)
1.3本文研究的主要内容 (3)
第2章基于肤色模型的人脸检测 (4)
2.1人脸检测方法 (4)
2.2基于肤色的人脸检测 (4)
2.2.1 色彩空间的选择 (4)
2.2.2 肤色模型 (5)
2.3人脸肤色相似度的计算 (6)
第3章相似度基础上的人脸特征定位 (10)
3.1人脸检测与定位算法 (10)
3.1.1 人脸区域分割算法 (10)
3.1.2 人脸区域标记算法 (12)
3.1.3 人脸检测流程 (12)
3.2人眼的检测算法及标定 (13)
3.2.1 有背景灰度人脸图像中的人眼检测与定位 (14)
3.2.2 眼睛的标定 (15)
3.3鼻子的标定 (17)
3.4嘴的标定 (18)
3.5设计结果及分析 (19)
结论与展望 (21)
致谢 (22)
参考文献 (23)
附录A引用的外文文献及翻译 (24)
附录B 参考文献题录及摘要 (27)
附录C 主要源程序 (29)