neo_local_planner
neo_local_planner copied to clipboard
Target lookahead marker
Just a simple lookahead marker, also fixed a bug where the lookahead target was not the actual looked ahead target, but just the closest pose on the local plan in line 373: auto iter_target = find_closest_point(local_plan.cbegin(), local_plan.cend(), actual_pos);
, in line 450: iter_target = iter_next
I assigned the actual target to the iterated lookahead target.