You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@xinwf It may be late for you, but I have found out following description of the initial conditions from the Python code this repo is adapted from.
double s0; // current course position
double c_speed; // current speed [m/s]
double c_d; // current lateral position [m]
double c_d_d; // current lateral speed [m/s]
double c_d_dd; // current lateral acceleration
double target_speed;
double *wx; // Waypoints X
double *wy; // Waypoints Y
int nw; // number of waypoints
double *o_llx;
double *o_lly;
double *o_urx;
double *o_ury;
int no; // number of obstacles
There are many initial conditions and hyper params but without any description, it's hard to understand this planner ....
The text was updated successfully, but these errors were encountered: