how to use TrajectoryPlannerROS::checkTrajectory [closed]
Hello, I sent a path to my move_base and i want to know if i can apply it.
So I was thinking to use base_local_planner::TrajectoryPlannerROS .
Inittialise it with TrajectoryPlannerROS (std::string name, tf::TransformListener *tf, costmap_2d::Costmap2DROS *costmap_ros)
load my path with setPlan (const std::vector< geometry_msgs::PoseStamped > &orig_global_plan)
and check my trajectory with checkTrajectory (double vx_samp, double vy_samp, double vtheta_samp, bool update_map=true)
But I don't get what are vx_samp,vy_samp and vtheta_samp. The documentation said that there are used in order to seed the Trajectory but I don't understand what does it mean.
Someone can describe me what is the purpose of these parameters?
thanks
I have use the vx_samp,vy_samp and vtheta_samp that I was using for my DWA_planner. I can initialize and load a map but when i try to checktrajectory the function always return false (even for plans that I know they are correct). Someone has an idea?