Functions

Main.ViconUDP.clear_UDP_bufferMethod
clear_UDP_buffer(vicon::ViconSystem)

Helper function that clears the UDP buffer. The timestamp is set as soon as the packet is read. No timestamp is transmitted via the UDP interface. The UDP buffer must therefore be cleard before reading starts.

TODO: Is there a better variant via the Julia socket?

source
Main.ViconUDP.close_viconMethod
close_vicon(vicon::ViconSystem)

takes the byte_string from the Vicon UDP socket and returns a Vector of ItemStructs

source
Main.ViconUDP.set_world!Method
set_world!(vicon::ViconSystem, ItemName::String)

Set transformation from Vicon System to World based on a given item.

source
Main.ViconUDP.set_world!Method
set_world!(vicon::ViconSystem, x_Vicon2World_m::Vector, R_Vicon2World::Matrix)

Set manual transformation from Vicon System to World.

source
Main.ViconUDP.start_async_readMethod
start_async_read(vicon::ViconSystem, ItemName::String, buffer_size = 10)

Starts a asyncron read from Vicon System. Returns a function that returns the latest item. buffer_size is the size of the Channel sending data from the async task.

source