This package contains a ROS driver for the NatNet protocol used by the NaturalPoint OptiTrack motion capture system. It supports NatNet version 3.0 (the version used by Motive 2.0), which is a bit more efficient and adds more accurate timing. The actual NatNet implementation is in mje-nz/python_natnet, which is included as a submodule and repackaged.
Only the latest version of Motive is supported. Older versions (i.e., older NatNet protocol versions) probably mostly work, but are not tested. Skeletons, force plates, and other peripherals probably mostly work in the underlying library but are not tested and are not published as ROS topics.
Kinetic is the only supported ROS version, but older and newer versions probably work too. The underlying library supports Python 2.7 and 3.4-3.6 on Linux, Windows and macOS. Both this package and the library have CI for all supported platforms.
Features:
- Doesn't crash all the time, unlike mocap_optitrack
- Synchronizes clocks to get timestamps right, unlike vrpn_client_ros
- All topics are timestamped with the camera mid-exposure time (give or take a few tenths of a millisecond)
- Publishes rigid bodies as
geometry_msgs/PoseStamped
- Publishes markers as
geometry_msgs/PointStamped
- Publishes markers that aren't in a rigid body as
natnet_msgs/MarkerList
, because they change ID a lot - Publishes all markers together as
visualization_msgs/Marker
(SPHERE_LIST
) for Rviz
- Add duplicate marker ID check and report bug
- Document "solver replaces occlusion" behaviour and implement workaround
- Rename MocapFrame to FrameOfData
- Make clock sync optional
- Release python_natnet on PyPI
- Add CONTRIBUTING etc
- Make sure unknown message IDs, failure to decode messages etc doesn't result in a crash
- Make sure to use the same variable signedness as the SDK
- Use rospy.spin
- Add warning when unnecessary data is being streamed
- Add guidance for appropriate Motive settings
The client
node connects to a NatNet server and publishes the data as ROS topics.
The data and descriptions are used directly, so make to give your rigid bodies unique streaming IDs and sensible names, and set the axis convention to z-up.
If you need Motive to use y-up for some reason, you can fix it with:
rosrun tf static_transform_publisher 0 0 0 0 0 1.57079632679 mocap_z_up mocap 100
-
~rigid_bodies/<name>/pose
(geometry_msgs/PoseStamped)Rigid body pose. The name is taken from the NatNet stream (i.e., from Motive), with a bit of an attempt to make sure it's a valid ROS name.
-
~rigid_bodies/<name>/marker<id>
(geometry_msgs/PointStamped)Position of each marker of each rigid body. The ID is taken from the NatNet stream (i.e., from Motive).
-
~rigid_bodies/<name>/markers
(natnet_msgs/MarkerList)Position and ID of each marker of each marker of each rigid body as a list.
-
~markers/leftovers
(natnet_msgs/MarkerList)Position and ID of any markers that aren't in a rigid body.
-
~markers/vis
(visualization_msgs/Marker)Position of all markers, for visualization with Rviz. The size is set to the average estimated marker size.
-
~server
(string
, optional)NatNet server to connect to; will autodetect if not provided.
-
~fake
(bool
, default: false)Use fake data instead of connecting to a real server.
-
~rate
(int
, default: 100)If
fake
is true, the rate at which to publish the fake data (in Hz). -
~mocap_frame
(string
, default: 'mocap')The name of the
tf
frame for the mocap data. -
~tf_remap
(dict
, optional)A dictionary mapping rigid body names to the name of the
tf
frame they should be published as. For example,{'UAV': 'base_link'}
would cause the pose for the rigid body namedUAV
to be published as a transform frommocap
tobase_link
.Dict params are a bit tricky to use in Kinetic or earlier: a literal works with
rosrun
, but using a dict literal as a parameter value in a launch file doesn't work until Lunar. Using arosparam
tag works though.