OpenNI 1.3.2
|
#include <XnModuleInterface.h>
Public Attributes | |
XnBool(* | CanFrameSyncWith )(XnModuleNodeHandle hGenerator, XnNodeHandle hOther) |
XnStatus(* | FrameSyncWith )(XnModuleNodeHandle hGenerator, XnNodeHandle hOther) |
XnStatus(* | StopFrameSyncWith )(XnModuleNodeHandle hGenerator, XnNodeHandle hOther) |
XnBool(* | IsFrameSyncedWith )(XnModuleNodeHandle hGenerator, XnNodeHandle hOther) |
XnStatus(* | RegisterToFrameSyncChange )(XnModuleNodeHandle hGenerator, XnModuleStateChangedHandler handler, void *pCookie, XnCallbackHandle *phCallback) |
void(* | UnregisterFromFrameSyncChange )(XnModuleNodeHandle hGenerator, XnCallbackHandle hCallback) |
XnBool(* XnModuleFrameSyncInterface::CanFrameSyncWith)(XnModuleNodeHandle hGenerator, XnNodeHandle hOther) |
Checks if this generator can frame sync with another generator.
hGenerator | [in] A handle to the instance. |
hOther | [in] The node to be checked. |
XnStatus(* XnModuleFrameSyncInterface::FrameSyncWith)(XnModuleNodeHandle hGenerator, XnNodeHandle hOther) |
Activates frame sync with another node
hGenerator | [in] A handle to the instance. |
hOther | [in] The node to sync with. |
XnBool(* XnModuleFrameSyncInterface::IsFrameSyncedWith)(XnModuleNodeHandle hGenerator, XnNodeHandle hOther) |
Checks if frame synced with other node.
hGenerator | [in] A handle to the instance. |
hOther | [in] The node to be checked. |
XnStatus(* XnModuleFrameSyncInterface::RegisterToFrameSyncChange)(XnModuleNodeHandle hGenerator, XnModuleStateChangedHandler handler, void *pCookie, XnCallbackHandle *phCallback) |
Registers a callback function to frame sync changes.
hGenerator | [in] A handle to the instance. |
handler | [in] A pointer to a function that will be called when frame sync changes. |
pCookie | [in] A user cookie that will be passed to the callback function. |
phCallback | [out] Optional. Will be filled with a handle to be passed to UnregisterFromFrameSyncChange(). |
XnStatus(* XnModuleFrameSyncInterface::StopFrameSyncWith)(XnModuleNodeHandle hGenerator, XnNodeHandle hOther) |
Stops frame sync with another node.
hGenerator | [in] A handle to the instance. |
hOther | [in] The node to stop sync with. |
void(* XnModuleFrameSyncInterface::UnregisterFromFrameSyncChange)(XnModuleNodeHandle hGenerator, XnCallbackHandle hCallback) |
Unregisters a callback function which was registered using RegisterToFrameSyncChange().
hGenerator | [in] A handle to the instance. |
hCallback | [in] The handle to the callback returned from RegisterToFrameSyncChange(). |