WVR_ClearTrackableMarkers¶
-
WVR_EXPORT WVR_Result WVR_ClearTrackableMarkers()
Function is used to clear all trackable markers.
Developers use this API to clear all trackable markers on runtime.
- Version
- API Level 16
- Return Value
WVR_Success
: Clear all cached anchors successfully.others
: WVR_Result mean failure.
How to use¶
Sample function:
#include <wvr/wvr_marker.h>
if (WVR_ClearTrackableMarkers() == WVR_Success) {
// clear all trackable markers
}