Back to the Main Page → Back to Motive Documentation
Motive offers multiple options to stream tracking data onto external applications in real-time. Streaming plugins are available for Autodesk Motion Builder, 3ds Max, Maya (VCS), VRPN, and trackd, and they can be downloaded from the OptiTrack website. For other streaming options, the NatNet SDK enables users to build custom clients to receive capture data. All of the listed streaming options do not require separate licenses to use. Common motion capture applications rely on real-time tracking, and the OptiTrack system is designed to deliver data at an extremely low latency even when streaming to third-party pipelines. This page covers configuring Motive to broadcast frame data over a selected server network. Detailed instructions on specific streaming protocols are included in the PDF documentation that ships with the respective plugins or SDK's. Read through the Data Streaming Pane page for explanations on each setting.
NaturalPoint Data Streaming Forum: OptiTrack Data Streaming
It is important to select the network adapter (interface, IP Address) for streaming data. Most Motive Host PCs will have multiple network adapters - one for the camera network and one (or more) for the local area network (LAN). Motive will only stream over the selected adapter (interface). Select the desired interface using the Data Streaming Pane in Motive. The interface can be either over a local area network (LAN) or on the same machine (localhost, local loopback). If both server (Motive) and client application are running on the same machine, set the network interface to the local loopback address (127.0.0.1). When streaming over a LAN, select the IP address of the network adapter connected to the LAN. This will be the same address the Client application will use to connect to Motive. Note that firewall or anti-virus software can block network traffic, so it is important to make sure these applications are disabled or configured to allow access for both server (Motive) and Client applications.
Before starting to broadcast data onto the selected network interface, define which data types to stream. Under streaming options, there are settings where you can include or exclude specific data types and syntax. Set only the necessary criteria to true. For most applications, the default settings will be appropriate.
When streaming skeleton data, bone naming convention formats annotations for each segment when data is streamed out. Appropriate convention should be configured to allow client application to properly recognize segments. For example, when streaming to Autodesk pipelines, the naming convention should be set to FBX.
Motive (1.7+) uses a right-handed Y-up coordinate system. However, coordinate systems used in client applications may not always agree with the convention used in Motive. In this case, the coordinate system in streamed data needs to be modified to a compatible convention. For client applications with a different ground plane definition, Up Axis can be changed under Advanced Network Settings. For compatibility with left-handed coordinate systems, the simplest method is to rotate the capture volume 180 degrees on the Y axis when defining the ground plane during Calibration.
NatNet is a client/server networking protocol which allows sending and receiving data across a network in real-time. It utilizes UDP along with either Unicast or Multicast communication for integrating and streaming reconstructed 3D data, rigid body data, and skeleton data from OptiTrack systems to client applications. Within the API, a class for communicating with OptiTrack server applications is included for building client protocols. Using the tools provided in the NatNet API, capture data can be used in various application platforms. Please refer to the NatNet User Guide For more information on using NatNet and its API references.
NatNet streams rotational data in quaternions. If you wish to present the rotational data in the Euler convention (pitch-yaw-roll), the quaternions data need to be converted into Euler angles. In the provided NatNet SDK samples, the SampleClient3D application converts quaternion rotations into Euler rotations to display in the application interface. The sample algorithms for the conversion are scripted in the NATUtils.cpp file. Refer to the NATUtils.cpp file and the SampleClient3D.cpp file to find out how to convert quaternions into Euler conventions.
If desired, Motive can be controlled remotely by sending either NatNet commands or XML broadcast messages through the UDP communication protocol, which enables client applications to trigger Motive commands. Using NatNet commands is recommended because they are not only more robust but they also offer more control options compared to XML messages, where only start and stop commands can be transmitted.
When triggering via XML messages, the Remote Trigger setting under Advanced Network Settings must be set to true. The XML message syntax is shown below.
To use XML Triggering
XML syntax for the trigger packet
<?xml version="1.0" encoding="UTF-8" standalone="no" ?> <CaptureStart> <TimeCode VALUE="12 13 14 14 0 0 1 1"/> <Name VALUE="RemoteTriggerTest_take01"/> <Notes VALUE=""/><Description VALUE=""/> <DatabasePath VALUE="S:/shared/testfolder/"/> <PacketID VALUE="0"/> <HostName VALUE="optional host name" /> <ProcessID VALUE="optional process id" /> </CaptureStart>
<?xml version="1.0" encoding="utf-8"?> <CaptureStop> <Name VALUE="TakeName" /> <Notes VALUE="cTake notes go here if any." /> <Assets VALUE="skel1, skel2, sword" /> <TimeCode VALUE="00:00:00:00" /> <HostName VALUE="optional host name" /> <ProcessID VALUE="optional process id" /> </CaptureStop>
C/C++ or VB/C#/.NET or Matlab
Comes with Motion Builder Resources: OptiTrack Optical Device OptiTrack Skeleton Device OptiTrack Insight VCS
C-Motion wiki: Visual3DServer Plugin
VRPN Github
trackd website
C/C++
Back: Data Types
Next: Data Editing