What's the difference between Topic and Parameter?
Topic gets data from Publisher. What's the difference between Topic and Parameter?
ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange |
Parameters are stored centrally on the parameter server and continue to live once whatever set that dies. They usually only contain simple data and can be set during launch. Parameters are usually used as configuration parameters while topics provide streaming changing data.
Technically topics form a direct connection between nodes, while parameters are stored and read from the parameter server.
A topic is intended for a stream of changing data while a parameter is something you set at the begin and don't change that often.
But you probably mean the difference between a publisher and a topic? A topic is a channel on which a publisher publishes data. It is a kind of whiteboard (the topic) on which a person (a publisher) writes things, but multiple people (publishers) can write on the whiteboard. It is also possible that no one is writing on the whiteboard (no publishers) but there are people (subscribers) watching it.
Asked: 2013-06-24 22:03:06 -0600
Seen: 1,571 times
Last updated: Jun 24 '13