Class: cTTAPIListener
Member Functions
TTAPIFrameAvailable
InitialPointCloud
Declaration: cTTAPIListener
class TTAPI cTTAPIListener
{
public:
cTTAPIListener();
virtual ~cTTAPIListener();
//== TTAPIFrameAvailable callback is called when a new synchronized group of camera frames has been delivered
//== to the TTAPI and is ready for processing. You can use this notification to then call TT_Update() without
//== having to poll blindly for new data.
virtual void TTAPIFrameAvailable();
//== InitialPointCloud is called when the initial point cloud is calculated from the connected cameras. During
//== this callback 3D markers can be added (up to MaxMarkers) or removed by modifying the Markers list as well
//== as the MarkerCount variable. After this callback the marker list is passed onto the rigid body solver.
virtual void InitialPointCloud(Core::cMarker* markers, int &markerCount, int maxMarkers);
};Last updated
Was this helpful?

