1 Star 0 Fork 0

沉沦/pose-estimation

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
decoder.py 620 Bytes
一键复制 编辑 原始数据 按行查看 历史
import numpy as np
import pickle
import openpifpaf.decoder.cifcaf as OriginalDecoder
from openpifpaf import visualizer
from openpifpaf.datasets.constants import COCO_KEYPOINTS, COCO_PERSON_SKELETON
class CifCafDecoder():
def __init__(self):
self.cif_metas = pickle.load(open( "/repo/cif_metas.pkl", "rb" ))
self.caf_metas = pickle.load(open( "/repo/caf_metas.pkl", "rb" ))
self._decoder = OriginalDecoder.CifCaf(cif_metas = self.cif_metas,
caf_metas = self.caf_metas)
def decode(self, fields):
return self._decoder(fields)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/waduhekx/pose-estimation.git
[email protected]:waduhekx/pose-estimation.git
waduhekx
pose-estimation
pose-estimation
main

搜索帮助