Skip to content

Commit

Permalink
fix(bpp): output detail
Browse files Browse the repository at this point in the history
Signed-off-by: satoshi-ota <[email protected]>
  • Loading branch information
satoshi-ota committed Jan 22, 2025
1 parent f5a97b3 commit ce824a6
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,7 @@ class SceneModuleInterface
if (stop_pose_.has_value()) {
planning_factor_interface_->add(
path.points, getEgoPose(), stop_pose_.value().pose, PlanningFactor::STOP,
SafetyFactorArray{});
SafetyFactorArray{}, true, 0.0, 0.0, stop_pose_.value().detail);
return;
}

Expand All @@ -559,7 +559,7 @@ class SceneModuleInterface

planning_factor_interface_->add(
path.points, getEgoPose(), slow_pose_.value().pose, PlanningFactor::SLOW_DOWN,
SafetyFactorArray{});
SafetyFactorArray{}, true, 0.0, 0.0, slow_pose_.value().detail);
}

void setDrivableLanes(const std::vector<DrivableLanes> & drivable_lanes);
Expand Down

0 comments on commit ce824a6

Please sign in to comment.