Python教程

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

本文主要是介绍AttributeError: module 'mediapipe.python.solutions.holistic' has no attribute 'UPPER_,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
# 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
这篇关于AttributeError: module 'mediapipe.python.solutions.holistic' has no attribute 'UPPER_的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!