最新公告
  • 欢迎您光临99源码网,本站秉承服务宗旨 履行“站长”责任,销售只是起点 服务永无止境!立即加入我们
  • 基于2D连续图像序列的行人骨架关节角度估计毕业论文+项目源码

    基于2D连续图像序列的行人骨架关节角度估计毕业论文+项目源码 最后编辑:2021-06-10
    增值服务: 自动发货 使用说明 安装指导 环境配置二次开发BUG修复
    购买后自动跳转百度云,项目自提,轻松方便。
    若有个人部署运行问题,点击右侧客服按钮咨询站长
    站长联系方式
    QQ:3484724101

    摘  要

    行人骨架关节角度估计是当今机器视觉领域的研究热点,它涉及到图像处理、模式估计、人工智能等多个学科的相关知识。基于2D连续图像序列的行人骨架关节角度估计包括人体区域检测、动作及姿态分割以及用于进行动作估计的目标分析和行为理解等。在分析总结该领域研究人员相关工作的基础上,本文针对俯卧撑运动的特点进行动作和姿态分割,并对其完整动作进行估计。

    本文的主要研究内容如下:

    1、本文针对目标动作的特点提出了一种基于动作变化率特征的动作及姿态分割方法。首先获取图像中动作区域的轮廓信息,根据连续图像序列中轮廓信息的变化情况挖掘出动作的变化率,然后利用量化后的动作变化率界定动作及姿态的分割点,最后按照对动作估计的意义大小,将不同的姿态划分为关键姿态和非关键姿态。由于关键姿态携带了进行动作估计的绝大部分信息,因而只利用关键姿态进行动作估计,这种方式有效地降低了计算复杂度,提高了实时性。

    2、本文针对2D连续图像序列采集和处理过程中产生的偶然性误差提出了一种基于向量模的误差消除算法,用于消除数据序列中异常数据引起的误差,其基本原理是在原有数据序列的基础上利用多维向量的模构建一组新的数据序列。首先采用某一数据节点及其相邻数据模拟多维向量各方向上的各个分向量,然后计算此多维向量的模并将其作为与当前数据节点对应的新数据序列中的节点。

    3、本文在动作及姿态分割的基础上采用了基于棍状模型的动作估计方法,通过分别建立各关键姿态的人体模型并与实际动作人体进行比较的方式进行目标分类和动作估计。结合大量的实验对以上方法和算法进行稳定性和准确性的验证,验证结果令人满意。

    关键词  俯卧撑  动作分割  姿态分割  向量模  模型匹配  动作估计


    Abstract

    The angle estimation of pedestrian skeleton joint is a hot topic in the field of machine vision. It involves many subjects such as image processing, pattern estimation, artificial intelligence and so on. The angle estimation of pedestrian skeleton joints based on video includes human region detection, motion and posture segmentation, target analysis and behavior understanding for motion estimation. On the basis of analyzing and summarizing the related work of researchers in this field, this paper divides the motion and posture according to the characteristics of push-ups, and estimates its complete motion.

    The main contents of this paper are as follows:

    1. According to the characteristics of target action, this paper proposes an action and posture segmentation method based on the feature of motion change rate. Firstly, the contour information of the action region in the image is obtained, and then the changing rate of the action is mined according to the variation of the contour information in the sequence of continuous images, and then the segmentation points of the action and posture are defined by the quantized change rate of the action. Finally, according to the significance of motion estimation, the different attitude is divided into critical attitude and non-critical attitude. Because the key attitude carries most of the information of motion estimation, only the key attitude is used to estimate the action. This method can effectively reduce the computational complexity. High real-time performance.

    2. In this paper, an error elimination algorithm based on vector mode is proposed to eliminate the error caused by abnormal data in the data sequence. The basic principle is to construct a new set of data sequences by using the modules of multidimensional vectors on the basis of the original data sequences. First, a data node and its adjacent data are used to simulate the upward sub-vectors of the multidimensional vector, and then the modules of the multidimensional vector are calculated and used as the nodes in the new data sequence corresponding to the current data node.

    3. On the basis of motion and posture segmentation, the method of motion estimation based on stick model is adopted in this paper, and the target classification and motion estimation are carried out by establishing the human body models of each key posture separately and comparing with the actual action human body. Combined with a large number of experiments, the stability and accuracy of the above methods and algorithms are verified, and the results are satisfactory.

    Keywords:push-ups segmentation attitude segmentation vector module model matching motion estimation


    目  录

    第1章  绪  论 1

    1.1  行人骨架关节角度估计 1

    1.2  行人骨架关节角度估计的应用领域 2

    1.3  行人骨架关节角度估计方法简述 3

    1.3. 1  基于概率统计的方法 3

    1.3.2  基于语法的方法 4

    1.3.3  基于模型的方法 4

    1.4  行人骨架关节角度估计的难点和面临的挑战 5

    1.5  本文的研究意义及主要工作 6

    1.5.1  研究意义 6

    1.5.2  主要工作 7

    第2章  人体区域检测 8

    2.1  人体区域检测方法 8

    2.1.1  静态背景下的人体区域检测 8

    2.1.2  动态背景下的人体区域检测 9

    2.2  本文中的人体区域检测 9

    2.2.1  建立背景模型 9

    2.2.2  利用背景减除法得到人体区域 10

    2.2.3  人体区域处理 10

    第3章  动作特征提取 12

    3.1  基于特征的方法 12

    3.2  基于模型的方法 13

    3.3  本文的动作特征提取 16

    3.3.1  从人体区域中提取轮廓特征 16

    3.3.2  利用轮廓特征的变化获取动作变化率特征 17

    3.3.3  动作变化率的优化 18

    第4章  俯卧撑运动的动作及姿态分割 20

    4.1  动作分割简述 20

    4.2  动作分割中的难点 21

    4.2.1  动作过渡区的问题 21

    4.2.2  解决方法 21

    4.3  基于动作变化率的动作及姿态边界检测 22

    4.3.1  动作分割 22

    4.3.2  姿态分割 22

    4.4  俯卧撑的动作及姿态分割过程及结果 22

    4.4.1  运动人体的提取与处理 22

    4.4.2  运动状态特征提取与优化 23

    4.4.3  俯卧撑的动作及姿态分割 23

    第5章  俯卧撑运动的动作估计 25

    5.1  行人骨架关节角度估计概述 25

    5.1.1  行人骨架关节角度估计存在的难点 25

    5.1.2  行人骨架关节角度估计所需的理想化条件 25

    5.1.3  行人骨架关节角度估计方法分类 26

    5.2  基于运动特征的行人骨架关节角度估计 27

    5.2.1  运动特征选择 27

    5.2.2  运动特征匹配 28

    5.3  基于模型的行人骨架关节角度估计 28

    5.3.1  人体模型建立 28

    5.3.2  俯卧撑模型的建立 29

    5.3.3  模型评价 30

    5.4  实验过程及结果 31

    5.4.1  俯卧撑模型参数的确定 31

    5.4.2  利用模型估计待测样本 33

    第6章  总结与展望 34

    6.1  本文总结 34

    6.2  工作展望 34

    参考文献 36

    致  谢 41

    基于2D连续图像序列的行人骨架关节角度估计毕业论文+项目源码

    基于2D连续图像序列的行人骨架关节角度估计毕业论文+项目源码

    基于2D连续图像序列的行人骨架关节角度估计毕业论文+项目源码

    基于2D连续图像序列的行人骨架关节角度估计毕业论文+项目源码

    猜你喜欢

    猜你在找

    99源码网专注代写Java程序,php程序,网站建设,毕业设计,课程设计,代写C/C++程序,代写数据结构,代写ios android程序。除外还代做Web开发、Php网站开发、ASP.NET网站作业等。
    99源码网,程序代做,代写程序代码,代写编程,代写Java编程,代写php编程,计算机专业代做,计算机毕业设计,网站建设,网站开发,程序 » 基于2D连续图像序列的行人骨架关节角度估计毕业论文+项目源码

    常见问题FAQ

    免费下载或者VIP会员专享资源能否直接商用?
    本站所有资源版权均属于原作者所有,这里所提供资源均只能用于参考学习用,请勿直接商用。若由于商用引起版权纠纷,一切责任均由使用者承担。更多说明请参考 VIP介绍。
    提示下载完但解压或打开不了?
    最常见的情况是下载不完整: 可对比下载完压缩包的与网盘上的容量,若小于网盘提示的容量则是这个原因。这是浏览器下载的bug,建议用百度网盘软件或迅雷下载。若排除这种情况,可在对应资源底部留言,或 联络我们.。
    找不到素材资源介绍文章里的示例图片?
    对于PPT,KEY,Mockups,APP,网页模版等类型的素材,文章内用于介绍的图片通常并不包含在对应可供下载素材包内。这些相关商业图片需另外购买,且本站不负责(也没有办法)找到出处。 同样地一些字体文件也是这种情况,但部分素材会在素材包内有一份字体下载链接清单。
    99源码网
    一个专注优质源码分享的平台
    • 2021-06-10Hi,初次和大家见面了,请多关照!

    发表回复

    售后服务:

    • 售后服务范围 1、商业模板使用范围内问题免费咨询
      2、源码安装、模板安装(一般 ¥50-300)服务答疑仅限SVIP用户
      3、单价超过200元的模板免费一次安装,需提供服务器信息。
      付费增值服务 1、提供软件定制、二次开发等服务请详询在线客服
      2、承接系统建站、仿站、开发、定制等服务
      3、服务器环境配置(一般 ¥50-300)
      4、网站中毒处理(需额外付费,500元/次/质保三个月)
      售后服务时间 周一至周日(法定节假日除外) 9:00-23:00
      免责声明 本站所提供的源码等资源仅供学习交流,若使用商业用途,请购买正版授权,否则产生的一切后果将由下载用户自行承担,有部分资源为网上收集或仿制而来,若模板侵犯了您的合法权益,请来信通知我们(Email: 3484724101@qq.com),我们会及时删除,给您带来的不便,我们深表歉意!

    Hi, 如果你对这款软件有疑问,可以跟我联系哦!

    联系作者
    • 5688会员总数(位)
    • 2184资源总数(个)
    • 3本周发布(个)
    • 1 今日发布(个)
    • 1487稳定运行(天)

    提供最优质的资源集合

    立即查看 了解详情