zoukankan      html  css  js  c++  java
  • 半篇论文笔记

    2D人体姿态估计,openpose中人体姿态估计部分的主要组成。  **仅作为个人备忘录**
    这里记录的是当时看论文记录在笔记本上的内容。后续会分析代码(主要会记录下数据处理部分),这篇论文阅读大多数内容来自 http://blog.csdn.net/yengjie2200/article/details/68064095

    Code: https://github.com/CMU-Perceptual-Computing-Lab/caffe_rtpose

    Openpose: https://github.com/CMU-Perceptual-Computing-Lab/openpose
    参考blog:http://blog.csdn.net/yengjie2200/article/details/68064095

    每一个body part(j)算一个confidence map。所以有多少个part(关节),就有多少个相对应part的confidence map。图像区域中每个点都有一个confidence值,构成confidence map。confidence map中每点的值与真值位置的距离有关,离得越近confidence 越高。用高斯分布来描述,confidence峰值就是真值位置。假设k个人,图像中每个人都有预测位置的confidence map,将k个人的confidence map的集合合成为一个confidence map时,取该点各个人的confidence的最大值。这里用max而不用average是为了:及时多个peak点离得很近,精度仍然不受影响。

     

     在test时,confidence score的计算方法:
    计算预测的PAF(vector)与candidate limb 方向的alignment (方向是否一致,用点积计算)。
    we measure association between candidate part detections by computing the line integral over the corresponding PAF, along the line segment connecting the candidate part locations. In other words, we measure the alignment of the predicted PAF with the candidate limb that would be formed by connecting the detected body parts.Specifically, for two candidate part locations dj1 and dj2 ,we sample the predicted part affinity field, Lc along the line segment to measure the confidence in their association:

  • 相关阅读:
    Server Tomcat v8.0 Server at localhost failed to start.的解决方法
    使用quartz实现定时器功能
    使用SpringMVC自带的@Scheduled完成定时任务
    springMVC中不通过注解方式获取指定Service的javabean
    java set初始化问题
    一个粗糙的分页
    eclipse下maven springMVC 整合 mybatis
    联合分布(二):联合分布
    联合分布(一):什么是概率分布
    mysql:启动服务时遇到的问题
  • 原文地址:https://www.cnblogs.com/daisy99lijing/p/12257248.html
Copyright © 2011-2022 走看看