1 / 38
文档名称:

毕业设计(论文)-基于Adaboost的人脸检测研究.doc

格式:doc   页数:38
下载后只包含 1 个 DOC 格式的文档,没有任何的图纸或源代码,查看文件列表

如果您已付费下载过本站文档,您可以点这里二次下载

分享

预览

毕业设计(论文)-基于Adaboost的人脸检测研究.doc

上传人:3346389411 2013/11/7 文件大小:0 KB

下载得到文件列表

毕业设计(论文)-基于Adaboost的人脸检测研究.doc

文档介绍

文档介绍:本科生毕业设计(论文)
(2012届)
信息工程学院
题目: 基于Adaboost的人脸检测研究
学号:
姓名:
专业班级: 计算机081班
指导教师: 职称: 实验师
2012 年 5 月 27日
本科生毕业设计(论文)诚信承诺书
我谨在此承诺:本人所写的毕业设计(论文)《基于Adaboost的人脸检测研究》均系本人独立完成,没有抄袭行为,凡涉及其他作者的观点和材料,均作了引用注释,如出现抄袭及侵犯他人知识产权的情况,后果由本人承担。

承诺人(签名):
2012 年 5 月 25日
基于Adaboost的人脸检测研究
摘要:本文使用Adaboost算法,以Visual C++集成开发环境做平台并利用OpenCV图像处理软件实现了人脸检测功能。论文介绍了几种常见的人脸检测识别方法以及国内外人脸检测技术研究的发展现状,详细阐述了Adaboost人脸检测算法的原理及训练流程,利用OpenCV图像处理软件与Adaboost人脸检测算法的结合模块,选取扩展的Haar特征,实现了人脸检测功能并给出了检测结果。该方法具有较高的准确度和实时性,在自动人脸识别、智能人机交互、图像与视频检索和监控等方面有着重要的应用价值。
关键字:Adaboost算法; OpenCV; 人脸检测
Face detection research based on Adaboost
Abstract: This article is using Adaboost algorithm, OpenCV image processing software and Visual C + + integrated development environment as a platform, achieving a face detection function. This paper introduces mon face detection methods and development status of domestic and international face detection technology, elaborating on the Adaboost face detection algorithm principle and training processes,using OpenCV image processing bined with Adaboost face detection algorithm modules, selecting the extended haar features,achieving face detection and giving results of the test. This method is accuracy and real-time, having important applications in automatic face recognition, intelligent man-machine interaction, image and video retrieval and monitoring.
keyword: Adaboost algorithm, OpenCV, Face detection
目录
摘要: I
Abstract: II
1、绪论 1
人脸检测研究的提出及背景 1
国内外人脸检测的研究现状 1
本文研究的目的与意义 2
本文研究的主要内容与组织结构 2
主要内容 2
组织结构 3
2、人脸检测方法与分析 4
基于特征的人脸检测方法 4
轮廓规则法 4
器官分布法 5
颜色纹理法 5
对称性规则 4
运动规则法 5
模板匹配方法 5
镶嵌图法 4
预定模板匹配法 5
变形模板法 5
基于统计的方法 5
人工神经网络法 4
特征空间法 5
支持向量机法 5
概率模型法 4
基于积分图像特征法 5
结束语 5
3、Adaboost 算法在人脸检测中的应用 5
Adaboost算法简介 6
Adaboost的原理 6
基本原理 7
具体步骤 7
4、OpenCV图像处理软件的介绍 8
OpenCV简介 8
OpenCV的基本概念及应用领域 12
4.