chhRobotics icon indicating copy to clipboard operation
chhRobotics copied to clipboard

自动驾驶规划控制python代码实现

Results 2 chhRobotics issues
Sort by recently updated
recently updated
newest added

https://github.com/CHH3213/chhRobotics/blob/50ef9393c30ecdec43488c3590caac93e51d585b/Controllers/PID/PID_demo.py#L85 关于e_y为什么为负数的个人理解: 当theta_e为正时,前轮需要左转(正方向旋转),因为PID控制器的target设为了0,所以在PID控制器看来,当前的前轮转角状态相对而言应该是负数,即 —theta_e;右转同理。

请问rrt算法中 当随机点与最近节点小于步长的时候,我看有的人写的时按照此时的方向继续向前扩展步长的长度,而您的代码是直接将随机点与最近节点相连,请问两者有区别吗?