Path planning without move_base - just using aruco_tag relative pose
I am trying to calculate a trajectory based on the information I have:
- aruco_tag relative position and orientation (relative to camera_link of my robot)
I don't want to use any information from /map and my fixed_frame should be base_footprint . Is it possible to do? Path planning without using any information from /map ?
Of course it "is possible". Are you trying to drop
move_base
completely, or only create your own planner for use inside move_base? Are we talking about a local_planner or a global_planner?Thanks for the reply. I would like to do it without move_base if it's possible. I could not find any tutorials or examples for a path planning algorithm without move_base and with the goal pose is given relative to something like camera_link or base_footprint, not map. Because I am trying to do docking using a camera-aruco tag setup and I want to plan a precise path to my goal, aruco tag. If I take the aruco tag's pose with respect to map, it would be less accurate.
I tried to create my own planner also but I cannot understand how could one do so without using move_base. I believe I am talking about both global_planner and a local_planner because I want to create a path to my goal and then I want to navigate through that path BUT my priority is creating a path first. I could deal ...(more)