WVR_StopHandGesture¶
-
WVR_EXPORT void WVR_StopHandGesture()
Use this function to stop hand gesture that you already started.
Use this API to stop hand gesture that you already started, and release related hand gesture source. This API must be called by main thread.
- Version
- API Level 5
How to use¶
Sample function:
#include <wvr/wvr_hand.h>
if (WVR_StartHandGesture(0x83) == WVR_Success) {
WVR_HandGestureData data;
if (WVR_GetHandGestureData(&data) == WVR_Success) {
// get hand gesture data success
} else {
// start hand gesture failed!
}
WVR_StopHandGesture();
} else {
// start hand gesture failed!
}