Package app.pivo.android.prosdk.util
Interface ITrackingListener
-
public interface ITrackingListenerCreated by murodjon on 2020/04/14
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidonClear()default voidonTracking(int x, int y, int width, int height)This callback function is a return of object trackingdefault voidonTracking(int x, int y, int width, int height, int frameWidth, int frameHeight)This callback function is a return of object trackingdefault voidonTracking(Rect rect)
-
-
-
Method Detail
-
onTracking
default void onTracking(int x, int y, int width, int height)This callback function is a return of object tracking- Parameters:
x- starting coordinate point of tracked result by xy- starting coordinate of tracked result by ywidth- width of tracked objectheight- height of tracked object
-
onTracking
default void onTracking(int x, int y, int width, int height, int frameWidth, int frameHeight)This callback function is a return of object tracking- Parameters:
x- starting coordinate point of tracked result by xy- starting coordinate of tracked result by ywidth- width of tracked objectheight- height of tracked objectframeWidth- width of being processed frameframeHeight- height of being processed frame
-
onTracking
default void onTracking(Rect rect)
-
onClear
default void onClear()
-
-