Traceback (most recent call last): File "E:\1作业与文件\智能建造\大作业\main.py", line 33, in <module> left_eye = shape.part(36, 42) TypeError: part(): incompatible function arguments. The following argument types are supported: 1. (self: _dlib_pybind11.full_object_detection, idx: int) -> _dlib_pybind11.point Invoked with: <_dlib_pybind11.full_object_detection object at 0x0000017CC3E0F730>, 36, 42
时间: 2024-04-21 12:28:50 浏览: 69
linux 下 pip3 报错“ File “/usr/bin/pip3”, line 9, in from pip import mainImportError: canno”处理
5星 · 资源好评率100%
根据错误信息,`part()` 函数有一个参数 `idx`,需要传入一个整数,但是这里传入了两个整数 36 和 42。建议检查一下代码中使用 `part()` 函数的地方,确保只传入了一个整数参数,例如:
```
left_eye = shape.part(36)
right_eye = shape.part(42)
```
这样就可以分别获取左眼和右眼的关键点了。
阅读全文