视觉智能平台人体分割有一个证件照的例子,我调试提示没有detect_face_with_option,这要怎么解决?
```python3 idcard.py
/usr/local/lib/python3.5/dist-packages/aliyunsdkcore/auth/algorithm/sha_hmac256.py:20: CryptographyDeprecationWarning: Python 3.5 support will be dropped in the next release of cryptography. Please upgrade your Python.
from cryptography.hazmat.backends import default_backend
Traceback (most recent call last):
File "idcard.py", line 82, in id_pohto_demo
face_result = face_client.detect_face_with_options(detect_face_request, runtime)
AttributeError: 'Client' object has no attribute 'detect_face_with_options'
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "idcard.py", line 254, in
id_pohto_demo(args)
File "idcard.py", line 109, in id_pohto_demo
print(error.message)
AttributeError: 'AttributeError' object has no attribute 'message'
```
根据您提供的错误信息,问题出在face_client.detect_face_with_options(detect_face_request, runtime)
这一行代码。错误提示为'Client' object has no attribute 'detect_face_with_options'
,意味着face_client
对象没有名为detect_face_with_options
的属性。
解决这个问题的方法是检查您的代码中是否正确导入了相关模块和库,并确保使用了正确的方法名。根据您的描述,您可能需要使用detect_face
方法而不是detect_face_with_options
。
请尝试将代码中的detect_face_with_options
替换为detect_face
,然后重新运行程序。如果问题仍然存在,请检查您的阿里云视觉智能平台的文档或联系技术支持以获取更多帮助。
这个几个包都有依赖了嘛?这个报错应该是没有依赖facebody20191230这个包
--此回答整理自钉群“阿里云视觉智能开放平台咨询1群”
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。