Sam / VideoToNPZ /lib /pose /__init__.py
Amanpreet
added 2
1cdc47e
raw
history blame contribute delete
398 Bytes
import sys
import os.path as osp
sys.path.insert(1, osp.join(osp.dirname(osp.realpath(__file__)), 'hrnet/pose_estimation'))
from gen_kpts import gen_img_kpts, gen_video_kpts, load_default_model
sys.path.insert(2, osp.join(osp.dirname(osp.realpath(__file__)), 'hrnet/lib/utils'))
from utilitys import plot_keypoint, write, PreProcess, box_to_center_scale, load_json
sys.path.pop(1)
sys.path.pop(2)