AttributeError: module 'mediapipe.python.solutions.holistic' has no attribute 'UPPER_BODY_POSE_CONNECTIONS'

# print(help(mp.python.solutions.holistic))
使用此命令查看包含的函数

错误部分
# body_connections = mp.solutions.holistic.UPPER_BODY_POSE_CONNECTIONS \
# if self.up_body_only else mp.solutions.holistic.POSE_CONNECTIONS

修改为:
body_connections = mp.solutions.holistic.POSE_CONNECTIONS \
if self.up_body_only else mp.solutions.holistic.POSE_CONNECTIONS
posted @ 2022-03-28 09:51  星涅爱别离  阅读(572)  评论(0编辑  收藏  举报