ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | Q&A answers.ros.org |
![]() | 1 | initial version |
I guess you misunderstood something. (Or I might be misunderstanding what you try to do).
Comparing the performance of 2 lidars by doing localization in a given map should be doable by running two amcl
instances side by side. You only need to make sure to set tf_broadcast
to false for at least one of the two nodes.
However, this then has nothing to do with amcl
taking in multiple odom
s (as you say). amcl
retrieves the odom
->base_link
transform via tf
. And then outputs the transform from map
->odom
(if enabled).
You then need to compare the published amcl_pose
and particle_cloud
topics (make sure to remap those to unique names).