Closed magixn closed 1 month ago
The example in doc is sub = message_filters.Subscriber("pose_topic", robot_msgs.msg.Pose), which is wrong and not work. It should be sub = message_filters.Subscriber(node, robot_msgs.msg.Pose, "pose_topic")as issue#61 shown.
sub = message_filters.Subscriber("pose_topic", robot_msgs.msg.Pose)
sub = message_filters.Subscriber(node, robot_msgs.msg.Pose, "pose_topic")
PR https://github.com/ros2/message_filters/pull/150
The example in doc is
sub = message_filters.Subscriber("pose_topic", robot_msgs.msg.Pose)
, which is wrong and not work. It should besub = message_filters.Subscriber(node, robot_msgs.msg.Pose, "pose_topic")
as issue#61 shown.