Skip to content

Commit

Permalink
Merge tag 'x2pix/v0.29.0-1.1' into experiment/20250106_shimizu_port_l…
Browse files Browse the repository at this point in the history
…idar_marker_localizer
  • Loading branch information
h-ohta committed Jan 18, 2025
2 parents c5a8634 + aee97ba commit aab1e09
Showing 1 changed file with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -812,7 +812,7 @@ AvoidLineArray ShiftLineGenerator::applyFillGapProcess(

// fill gap among shift lines.
for (size_t i = 0; i < sorted.size() - 1; ++i) {
if (sorted.at(i + 1).start_longitudinal < sorted.at(i).end_longitudinal) {
if (sorted.at(i + 1).start_longitudinal < sorted.at(i).end_longitudinal + 1e-3) {
continue;
}

Expand All @@ -827,8 +827,6 @@ AvoidLineArray ShiftLineGenerator::applyFillGapProcess(
utils::static_obstacle_avoidance::fillAdditionalInfoFromLongitudinal(
data, debug.step1_front_shift_line);

applySmallShiftFilter(ret, 1e-3);

return ret;
}

Expand Down

0 comments on commit aab1e09

Please sign in to comment.