NPC.apply_control(VehicleControl(throttle=1.0, target_speed=50)) Boost.Python.ArgumentError: Python argument types in VehicleControl.__init__(VehicleControl)
时间: 2024-03-24 15:35:46 浏览: 164
Boost.Python.ArgumentError: Python argument types in错误解决及Boost安装配置-附件资源
这个错误提示意味着你在调用VehicleControl时没有正确传递参数。VehicleControl类需要至少一个参数,即throttle(油门)。你可以尝试以下代码:
```
from carla import VehicleControl
NPC.apply_control(VehicleControl(throttle=1.0, steer=0.0, brake=0.0, hand_brake=False, reverse=False, manual_gear_shift=False, gear=0, target_speed=50))
```
这里,除了throttle之外,其他参数都是可选的,如果你不需要使用它们,可以将它们省略。同时,也要确保你已经正确导入了VehicleControl类。
阅读全文