/humans/bodies/*/position#

Caution

This documentation page has been auto-generated.

It may be missing some details.

/humans/bodies/*/position Quick Facts

Category

Social perception

Direction

➡️ you normally subscribe to this topic.

Quick snippets#

Check the publication rate#
$ rostopic hz /humans/bodies/*/position
Display the data published on the topic#
$ rostopic echo /humans/bodies/*/position

How to use in your code#

Subscribe to the topic using Python#
 1import rospy
 2from .msg import
 3
 4def on_data(msg):
 5    print(msg)
 6
 7if __name__ == "__main__":
 8
 9    rospy.init_node("subscriber")
10    rospy.Subscriber("/humans/bodies/*/position", , on_data)
11    rospy.spin()