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
This line is at the condition that i equals to 0, it sets dubinsNodes[0]'s predecessor as start node. However, checking dubinsNodes[0] == start would get true, which means the first dubin node will equal to is predecessor, and it brings node duplication at the connection of dubinShot and regular search.
(I am using these node results for velocity profile generation, thus duplicated node definitely affect the angle calculation)
The text was updated successfully, but these errors were encountered:
path_planner/src/algorithm.cpp
Line 493 in 524a489
This line is at the condition that
i
equals to 0, it setsdubinsNodes[0]
's predecessor as start node. However, checkingdubinsNodes[0] == start
would gettrue
, which means the first dubin node will equal to is predecessor, and it brings node duplication at the connection of dubinShot and regular search.(I am using these node results for velocity profile generation, thus duplicated node definitely affect the angle calculation)
The text was updated successfully, but these errors were encountered: