-
public interface ITrackingListenerCreated by murodjon on 2020/04/14
-
-
Method Summary
Modifier and Type Method Description voidonTracking(int x, int y, int width, int height)This callback function is a return of object tracking voidonTracking(int x, int y, int width, int height, int frameWidth, int frameHeight)This callback function is a return of object tracking voidonClear()-
-
Method Detail
-
onTracking
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
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
-
onClear
void onClear()
-
-
-
-