class documentation

class TransformBroadcaster:

Constructor: TransformBroadcaster(queue_size)

View In Hierarchy

TransformBroadcaster is a convenient way to send transformation updates on the "/tf" message topic.

Method __init__ Undocumented
Method sendTransform Broadcast the transformation from tf frame child to parent on ROS topic "/tf".
Method sendTransformMessage Broadcast the transformation from tf frame child to parent on ROS topic "/tf".
Instance Variable tf2_broadcaster Undocumented
def __init__(self, queue_size=100):

Undocumented

def sendTransform(self, translation, rotation, time, child, parent):

Broadcast the transformation from tf frame child to parent on ROS topic "/tf".

Parameters
translationthe translation of the transformtion as a tuple (x, y, z)
rotationthe rotation of the transformation as a tuple (x, y, z, w)
timethe time of the transformation, as a rospy.Time()
childchild frame in tf, string
parentparent frame in tf, string
def sendTransformMessage(self, transform):

Broadcast the transformation from tf frame child to parent on ROS topic "/tf".

Parameters
transformgeometry_msgs.msg.TransformStamped
tf2_broadcaster =

Undocumented