Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(planning_evaluator): add modified goal deviation #3053

Merged
merged 6 commits into from
Mar 14, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix func docs
Signed-off-by: kosuke55 <kosuke.tnp@gmail.com>
  • Loading branch information
kosuke55 committed Mar 14, 2023
commit 4ac91a03e16fd568295cb92b3f981dba27e5e7fc
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ Stat<double> calcVelocityDeviation(const Trajectory & ref, const Trajectory & tr
/**
* @brief calculate longitudinal deviation of the given ego pose from the modified goal pose
* @param [in] base_pose base pose
* @param [in] target_pose target pose
* @param [in] target_point target point
* @return calculated statistics
*/
Stat<double> calcLongitudinalDeviation(const Pose & base_pose, const Point & target_point);

/**
* @brief calculate lateral deviation of the given ego pose from the modified goal pose
* @param [in] base_pose base pose
* @param [in] target_pose target pose
* @param [in] target_point target point
* @return calculated statistics
*/
Stat<double> calcLateralDeviation(const Pose & base_pose, const Point & target_point);
Expand Down