Skip to content

Crossplatform version of the OptiTrack NatNet SDK

Notifications You must be signed in to change notification settings

RROS-Lab/NatNetSDKCrossplatform

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CMake

NatNetSDKCrossplatform

This repository contains the NatNet SDK to receive data from an OptiTrack Motion Capture system. The SDK can be found at https://optitrack.com/products/natnet-sdk/.

This code contains two versions:

  1. The direct depacketization method, which is fully open-source. The PacketClient helper was taken from this SDK (version 4.1.0, Windows). The portions of the SDK that have been used and are part of this repository are licensed under Apache License, Version 2.0. The remaining code is licensed under MIT. This uses boost asio for communication.

  2. The official SDK, in its binary distribution.

Layout

  • include: Official include files from NaturalPoint
  • samples: Official samples (PacketClient from the Windows version of the SDK) and SampleClient from the Linux version
  • src: The actual source code of the crossplatform port, based on the depacketization method.

Build

Tested on Ubuntu 20.04

mkdir build
cd build
cmake ..
make

Run

Test the open-source version:

./packetClient <IP-where-motive-is-running>

Test the closed-source version:

./sampleClient

or

./minimalClient

Notes

There are two communication channels:

  • Command (to send commands over UDP)
  • Data (UDP multicast receiver)

This assumes the following default settings:

  • multicast address: 239.255.42.99
  • command port: 1510
  • data port: 1511

About

Crossplatform version of the OptiTrack NatNet SDK

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 75.0%
  • C++ 22.8%
  • CMake 2.2%