Interface PointsDetectionCallback
-
@WorkerThread public interface PointsDetectionCallback
A callback that will be invoked whenDisplayablePointsDetection
gets available.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onPointsDetection(DisplayablePointsDetection pointsDetection)
Called whenDisplayablePointsDetection
gets available.
-
-
-
Method Detail
-
onPointsDetection
void onPointsDetection(@NonNull DisplayablePointsDetection pointsDetection)
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.
-
-