ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

piliboss's profile - activity

2021-09-20 13:00:00 -0500 received badge  Famous Question (source)
2020-04-24 11:57:00 -0500 received badge  Famous Question (source)
2018-10-17 19:44:38 -0500 received badge  Famous Question (source)
2018-07-17 23:50:03 -0500 received badge  Notable Question (source)
2018-04-23 09:09:07 -0500 received badge  Famous Question (source)
2018-04-23 09:07:56 -0500 received badge  Notable Question (source)
2018-04-23 09:04:54 -0500 received badge  Popular Question (source)
2018-03-27 08:26:55 -0500 edited question Pose estimation error with ar_pose

Pose estimation error with ar_pose I am using ar_pose package to estimate the pose of aruco marker. The camera I used

2018-03-27 08:25:50 -0500 edited question Pose estimation error with ar_pose

Pose estimation error with ar_pose I am using ar_pose package to estimate the pose of aruco marker. The camera I used

2018-03-27 08:24:25 -0500 commented question Pose estimation error with ar_pose

The picture has been attached to the post. Thank you

2018-03-27 08:22:24 -0500 edited question Pose estimation error with ar_pose

Pose estimation error with ar_pose I am using ar_pose package to estimate the pose of aruco marker. The camera I used

2018-03-27 08:22:24 -0500 received badge  Editor (source)
2018-03-27 08:19:56 -0500 edited question Pose estimation error with ar_pose

Pose estimation error with ar_pose I am using ar_pose package to estimate the pose of aruco marker. The camera I used

2018-03-27 07:47:14 -0500 asked a question Pose estimation error with ar_pose

Pose estimation error with ar_pose I am using ar_pose package to estimate the pose of aruco marker. The camera I used

2018-03-08 14:48:32 -0500 received badge  Notable Question (source)
2018-03-08 14:48:32 -0500 received badge  Popular Question (source)
2017-05-12 08:25:35 -0500 received badge  Notable Question (source)
2017-04-18 11:12:11 -0500 received badge  Popular Question (source)
2017-01-17 07:27:34 -0500 asked a question 2D Pose Estimate can no be used with Multiple robots

When I define multiple robots, namely use tf_prefix, 2d pose estimate function can not be used in rviz. I look in the amcl_node.cpp, fine the reason, the code is following:

else if(tf_->resolve(msg.header.frame_id) != tf_->resolve(global_frame_id_))
  {
    ROS_WARN("Ignoring initial pose in frame \"%s\"; initial poses must be in the global frame, \"%s\"",
             msg.header.frame_id.c_str(),
             global_frame_id_.c_str());
    return;
  }

When i have multiple robots, the tf_->resolve(msg.header.frame_id) will be for example "robot_1/map", but the tf_->resolve(global_frame_id_) is "map". Anyhow, i have to use tf_prefix, otherwise the robots will not know which one is to set to the initial pose.

How can i solve this problem?

2017-01-17 07:10:22 -0500 received badge  Enthusiast
2017-01-12 01:38:15 -0500 received badge  Popular Question (source)
2017-01-10 04:02:07 -0500 asked a question How does navigation get base_link information from stage

Hey can anyone tell me how does navigation(move_base) get base_link information when i simulate mobile robot in stage. When I move the robot position manually in stage window, the position of base_link will not align the robot position in stage. So i would like to know where come form the base_link information to navigation stack.

thank you.

2017-01-09 09:50:36 -0500 asked a question Align robot position in stage and rviz after soft reset

I am doing a Benchmark in Stage to test the performance of the local planner. So i wrote a script to make the robot to move infinite to one point and back. And i want to reset the robot position to original as soon as the robot get collided. I called the "reset robot position" service published by stage_ros, the code like following:

ros::ServiceClient client = nh1.serviceClient<std_srvs::empty>("reset_positions");

std_srvs::Empty reset_srv;

client.call(reset_srv);

After the robot was reset, the robot seemed to be "lost", the robot position in stage and rviz were not aligned, and the robot couldn't be navigated nomally. Can someone tell me why?

2017-01-08 06:19:17 -0500 received badge  Supporter (source)
2017-01-07 07:50:00 -0500 commented answer How to replace a robot in stage_ros

Hello, i have used this service you created,but after i reset my robot position, the robot can't be navigated true, do you know why?