- 博客(11)
- 收藏
- 关注
原创 快手计算机视觉实习面经 人体/人脸方向
快手计算机视觉实习面经刚刚升入研二,准备出去实习啦,这次面了快手,这里记录一下面试经过。背景本科211,硕士985,本科学的自动控制理论,和CV完全不相关,后来毕业设计时候才开始接触CV,主要方向是人体姿态估计 Human Pose Estimation...
2021-10-24 15:21:56
8036
原创 Codes for NMPJPE
自己写了一个3D human pose里面计算NMPJPE的函数,基于Pytorch,输入的pred和gt维度都是(batchsize, num_joints, 3)。所谓NMPJPE就是先把pred经过旋转、放缩变换到和gt相同的尺度下,然后再计算两者之间关节点平均欧式距离,这个在unsupervised 3d human pose estimation中常用到。代码在下文,欢迎大家随意取用。import torchdef apply_umeyama(batch_gt, batch_pred, r
2021-08-13 19:33:27
702
1
原创 论文解读 | Fusing wearable imus with multi-view images for human pose estimation: A geometric approach
CVPR2020 | Fusing wearable imus with multi-view images for human pose estimation: A geometric approach作者: Zhe Zhang, Chunyu Wang, Wenhu Qin, Wenjun Zeng (东南大学&微软亚研院)网址: https://github.com/CHUNYUWANG/imu-human-pose-pytorch论文: https://www.microsoft.co
2021-03-10 17:01:00
1144
1
原创 列主元Gauss消去法C++实现
直接上代码吧,就一百多行/************************** 2020.10.17* 列主元 Gauss消去法*************************/#include <iostream>#include <math.h>#include <iomanip>using namespace std;#define M 9#define N 9int main(){ int i = 0, j = 0, k = 0
2020-11-05 17:49:17
860
原创 2020人体姿态估计综述(Part5:3D Human Pose Estimation from Video)
承接之前的博文:A 2020 Human Pose Estimation Review (Part1:2D Single Person)A 2020 Human Pose Estimation Review (Part2:2D Top-Down Multi-Person Pose Estimation)A 2020 Human Pose Estimation Review (Part3:2D Bottom-Up Multi-Person Pose Estimation)A 2020 Human Po
2020-08-26 12:37:41
4649
原创 2020人体姿态估计综述(Part4:3D Human Pose Estimation from Image)
承接之前的博文:A 2020 Human Pose Estimation Review (Part1:2D Single Person)A 2020 Human Pose Estimation Review (Part2:2D Top-Down Multi-Person Pose Estimation)A 2020 Human Pose Estimation Review (Part3:2D Bottom-Up Multi-Person Pose Estimation)目录1 Human Pos
2020-08-24 11:07:51
5310
原创 2020人体姿态估计综述(Part3:2D Bottom-Up Multi-Person Pose Estimation)
承接之前的博文:A 2020 Human Pose Estimation Review (Part1:2D Single Person)A 2020 Human Pose Estimation Review (Part2:2D Top-Down Multi-Person Pose Estimation)目录1 Human Pose Estimation2 2D Single-Person Pose Estimation3 2D Top-Down Multi-Person Pose Esti
2020-08-19 02:38:41
4343
原创 2020人体姿态估计综述(Part2:2D Top-Down Multi-Person Pose Estimation)
承接上一篇博文:A 2020 Human Pose Estimation Review (Part1:2D Single Person)目录3 2D Top-Down Multi-Person Pose Estimation 3.1 Top-Down 3.2 Mask RCNN 3.3 Cascaded Pyramid Network for Multi-Person Pose Estimation 3.4
2020-08-15 23:45:41
4023
4
原创 2020人体姿态估计综述(Part1:2D Single Person)
前言现在距离研究生开学还有一个月的时间,回顾保研后的这大半年,自己先是在深度学习这个领域打基础,从看吴恩达的机器学习再到花书以及西瓜书。之后确定了Human Pose的研究方向,开始关注这一领域,看了不少论文,也借着毕设自己动手写了一个项目,但感觉自己的知识一直没有形成体系。因此想利用这一个月的时间,将2D与3D的比较经典的论文、方法再总结回顾一下,构建出自己的Human Pose知识树。目录1 Human Pose Estimation2 2D Single-Person Pose Estim
2020-08-15 17:48:17
5349
6
原创 R-CNN系列学习路线总结
R-CNN系列是Object Detection中常用的模型,在此总结一下我自己在学习RCNN全家桶中的路线,因为关于这些论文的博客资源已经很多了,完全没有必要再去围绕论文内容去写新的博客。不过很多新人可能一时找不到方向,在此我对相关资源做了一个整理,以供新人参考。首先放一张自己做的总结图,简单描述一下RCNN系列之间的演化过程图中涉及到的论文如下:[1]Girshick R, Donah...
2020-02-19 11:55:14
857
3
原创 快速二维中值滤波算法的实现(灰度+RGB图)
快速二维中值滤波算法的实现(灰度+RGB图)摘要算法流程及伪代码算法流程伪代码程序代码摘要本文主要完成对 Thomas S Huang, George J Yang, and Gregory J Yang. A Fast Two-Dimensional Median Filtering Algorithm[J]. IEEE Transactions on Acoustics Speech an...
2019-12-14 21:17:16
3870
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人