Interface PointsDetectionCallback
@WorkerThread
public interface PointsDetectionCallback
A callback that will be invoked when
DisplayablePointsDetection
gets available.-
Method Summary
Modifier and TypeMethodDescriptionvoid
onPointsDetection
(DisplayablePointsDetection pointsDetection) Called whenDisplayablePointsDetection
gets available.
-
Method Details
-
onPointsDetection
Called whenDisplayablePointsDetection
gets available. NOTE: This method is called on background thread, so make sure you don't perform any UI related operations on it.- Parameters:
pointsDetection
-DisplayablePointsDetection
that represents the available detection.
-