会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
祥瑞哈哈哈
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
29
30
31
32
33
34
35
36
37
···
74
下一页
2022年12月28日
hrnet的joints_list[0]
摘要: joints_list[0] 是numpy数组输出它的形状为 shapejoints_list[0] (2, 18, 3)。第一维代表人数,第二维表示17个关键点和一个中心值。3代表x,y,标记状态。状态分为被标注,未被标注,标注被遮挡。
阅读全文
posted @ 2022-12-28 17:39 祥瑞哈哈哈
阅读(22)
评论(0)
推荐(0)
2022年12月27日
hrnet的get_joint
摘要: 他的第18个keypoint存的是平均坐标。 def get_joints(self, anno): num_people = len(anno) area = np.zeros((num_people, 1)) joints = np.zeros((num_people, self.num_joi
阅读全文
posted @ 2022-12-27 22:28 祥瑞哈哈哈
阅读(34)
评论(0)
推荐(0)
coco2017keypoint的都含有哪些关键点
摘要: 下边是我从coco2017keypoint截取的部分代码。 "categories": [{"supercategory": "person","id": 1,"name": "person","keypoints": ["nose","left_eye","right_eye","left_ear
阅读全文
posted @ 2022-12-27 12:48 祥瑞哈哈哈
阅读(300)
评论(0)
推荐(0)
2022年12月26日
lightweight openpose比coco数据集的keypoint多俩个通道
摘要: 第一个通道是neck是虚拟点用左肩膀和右肩膀的均值作为neck坐标,第二个通道是背景图即1-所有背景图的最大像素。 coco数据集只有17个关键点。 生成neck在transformer里。 生成背景图在cocokeypoint的heatmaps生成里。
阅读全文
posted @ 2022-12-26 16:35 祥瑞哈哈哈
阅读(70)
评论(0)
推荐(0)
coco的keypoint一共是17个关键点
摘要: 只能搜到17而不能搜到18
阅读全文
posted @ 2022-12-26 06:22 祥瑞哈哈哈
阅读(292)
评论(0)
推荐(0)
2022年12月25日
openpose的heatmaps和paf
摘要: paf用俩张图去表示x和y所以19对关节连接会出现38张图。 keypoint一共18个关键点之所以为19是因为有背景图。
阅读全文
posted @ 2022-12-25 16:48 祥瑞哈哈哈
阅读(124)
评论(0)
推荐(0)
openpose的paf
摘要: paf是向量,一个存x一个存y。19对。
阅读全文
posted @ 2022-12-25 14:01 祥瑞哈哈哈
阅读(65)
评论(0)
推荐(0)
lightweight的group_keypoints解释
摘要: def group_keypoints(all_keypoints_by_type, pafs, pose_entry_size=20, min_paf_score=0.05): pose_entries = [] all_keypoints = np.array([item for sublist
阅读全文
posted @ 2022-12-25 09:09 祥瑞哈哈哈
阅读(113)
评论(0)
推荐(0)
2022年12月24日
numpy中...和:的区别
摘要: ...代指多个:,:。 import numpy as np w1=[] for j in range(5): if j!=0: w1.append((j*1,j*1+1,0)) w1=np.array(w1) #print(w1) #print(w1[:,:-1]) e=w1[:,:-1] br=
阅读全文
posted @ 2022-12-24 17:38 祥瑞哈哈哈
阅读(448)
评论(0)
推荐(0)
np.pad的解释
摘要: np.pad就是把x的上下左右都补上维。 import numpy as np x=np.arange(12).reshape((3,4)) x=np.pad(x, [(2, 2), (2, 2)], mode='constant') print(x) [[ 0 0 0 0 0 0 0 0] [ 0
阅读全文
posted @ 2022-12-24 13:24 祥瑞哈哈哈
阅读(257)
评论(0)
推荐(0)
上一页
1
···
29
30
31
32
33
34
35
36
37
···
74
下一页
公告