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 0x000001575A00F8F0>, 36, 42
时间: 2024-04-21 13:28:42 浏览: 96
根据错误信息,`part()` 函数有一个参数 `idx`,需要传入一个整数,但是这里传入了两个整数 36 和 42。建议检查一下代码中使用 `part()` 函数的地方,确保只传入了一个整数参数,例如:
```
left_eye = shape.part(36)
right_eye = shape.part(42)
```
这样就可以分别获取左眼和右眼的关键点了。
阅读全文